// ==UserScript== // @name Keep ShinyColors BGM // @version 0.9.8 // @description forked from https://github.com/biuuu/ShinyColors // @icon https://shinycolors.enza.fun/icon_192x192.png // @original_author biuuu // @author pikakolendo // @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(); }());