您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Play "brown" sound on Brown button
// ==UserScript== // @name wplace Brown Audio // @namespace https://wplace.live/ // @version 1.0 // @description Play "brown" sound on Brown button // @author ApertureUA // @match *://wplace.live/* // @license WTFPLv2.0 // @grant none // ==/UserScript== (function() { 'use strict'; // configurable audio source const AUDIO_SRC = "https://soundbuttonsworld.com/uploads/a3551eb5-0f9e-49e3-9718-0980b181b9db.mp3"; // create hidden audio element const audio = document.createElement("audio"); audio.src = AUDIO_SRC; audio.style.display = "none"; document.body.appendChild(audio); // helper to attach event function attachEvents(el) { el.addEventListener("click", () => { audio.currentTime = 0; audio.play().catch(e => console.log("Audio play blocked:", e)); }); } // find existing "Brown" elements document.querySelectorAll('[aria-label="Brown"]').forEach(attachEvents); // watch for future elements (in case site updates dynamically) const observer = new MutationObserver(mutations => { for (const m of mutations) { for (const node of m.addedNodes) { if (node.nodeType === 1) { // element if (node.getAttribute("aria-label") === "Brown") { attachEvents(node); } node.querySelectorAll?.('[aria-label="Brown"]').forEach(attachEvents); } } } }); observer.observe(document.body, { childList: true, subtree: true }); })();