Keep ShinyColors BGM

SninyColors声音保持器

目前為 2019-12-25 提交的版本,檢視 最新版本

// ==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
// ==/UserScript==

(function () {

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

	keepBgm();

}());