Updated 04162023-104240
https://greasyfork.org/en/scripts/464149-honk-button
I think you're going to be very impressed with this userscript made in a single GPT prompt.
Honk Button. https://greasyfork.org/en/scripts/464149-honk-button
Adds a small, unstyled button labeled "Honk!" to the upper right of any webpage which causes loud honking sounds to play.
// ==UserScript==
// @name Honk Button
// @namespace https://davidblue.wtf
// @copyright 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();
};