您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Mutes the lobby chat notification sound in the game Keymash when you are currently playing the game
// ==UserScript== // @name Keymash - Mute ChatBeep when in-game // @namespace http://tampermonkey.net/ // @version 0.1 // @description Mutes the lobby chat notification sound in the game Keymash when you are currently playing the game // @author 8Onyx // @match https://keymash.io/* // @icon https://www.google.com/s2/favicons?sz=64&domain=keymash.io // @grant none // @license CC0 // ==/UserScript== (function() { 'use strict'; const target = document.getElementsByTagName("main")[0]; const observer = new MutationObserver((records) => { for (let record of records) { if (record.removedNodes.length && document.getElementById("ChatBeep") && target.children[3] == record.target) { if (record.removedNodes[0].className.includes("container")) { // Game start ChatBeep.volume = 0; console.log("Muting ChatBeep, game has started."); } else { // Game end ChatBeep.volume = 1; console.log("Unmuting ChatBeep, game has ended."); } } } }); observer.observe(target, { childList: true, subtree: true }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址