Keep ShinyColors BGM

ShinyColors丢失焦点时继续播放声音

目前为 2019-12-27 提交的版本。查看 最新版本

// ==UserScript==
// @name         Keep ShinyColors BGM
// @version      1.0.1
// @description  ShinyColors丢失焦点时继续播放声音
// @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
// ==/UserScript==

(function () {

	const keepBgm = () => {
	  window.addEventListener('blur', function (e) {
	    e.stopImmediatePropagation();
	  }, false);
	  document.addEventListener('visibilitychange', function (e) {
	    e.stopImmediatePropagation();
	  });
	};

	keepBgm();

}());