// ==UserScript== // @name Keep ShinyColors BGM // @version 1.0.0 // @description SninyColors声音保持器 // @icon https://shinycolors.enza.fun/icon_192x192.png // @original_author biuuu // @author pikakolendo02 // @match https://shinycolors.enza.fun/* // @run-at document-end // @grant GM_xmlhttpRequest // @namespace https://greasyfork.org/users/428281 // @downloadURL none // ==/UserScript== (function () { const keepBgm = () => { window.addEventListener('blur', function (e) { e.stopImmediatePropagation(); }, false); document.addEventListener('visibilitychange', function (e) { e.stopImmediatePropagation(); }); }; keepBgm(); }());