// ==UserScript== // @name 偶像大师闪耀色彩BGM保持器 // @name:en THE IDOLM@STER SHINY COLORS BGM Keeper // @version 1.0.3 // @description 保持闪耀色彩BGM在后台播放 // @description:en Keep ShinyColors BGM on at focus lost // @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(); }());