返回首頁 

Greasy Fork is available in English.

trace.moe disable auto mute

Disables the auto mute on trace.moe

// ==UserScript==// @name         trace.moe disable auto mute// @namespace    http://tampermonkey.net/// @version      1.0// @description  Disables the auto mute on trace.moe// @author       SoaringGecko// @match        *://trace.moe/*// @require      https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js// @grant        none// ==/UserScript==(function() {'use strict';document.querySelector("#mute").checked=false;document.querySelector("#player").muted=false;})();