Honk Button

Adds a small, unstyled button labeled "Honk!" to the upper right of any webpage which causes loud honking sounds to play.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name     Honk Button
// @namespace https://davidblue.wtf
// @license Unlicensed
// @version 1.1
// @description Adds a small, unstyled button labeled "Honk!" to the upper right of any webpage which causes loud honking sounds to play.
// @author	David Blue
// @source  https://github.com/extratone
// @grant    none
// @include  *
// @supportURL https://davidblue.wtf/contact
// ==/UserScript==

var honkButton = document.createElement("BUTTON");
honkButton.innerHTML = "Honk!";
document.body.appendChild(honkButton);
document.body.style.position = "relative";
honkButton.style.position = "absolute";
honkButton.style.top = "0px";
honkButton.style.right = "0px";

var honkSound = new Audio("https://davidblue.wtf/audio/specialhonk.mp3");

honkButton.onclick = function () {
	honkSound.play();
};