您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 // @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(); };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址