Honk Button

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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();
};