skip gamekee popup

自動關閉gamekee註冊訊息

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         skip gamekee popup
// @namespace    https://github.com/x94fujo6rpg/SomeTampermonkeyScripts
// @version      0.2
// @description  自動關閉gamekee註冊訊息
// @author       x94fujo6
// @include      https://*.gamekee.com/*
// ==/UserScript==

(async function () {
	function wait_tab() {
		return new Promise(resolve => {
			if (document.visibilityState === "visible") return resolve();
			console.log("tab in background, script paused");
			document.addEventListener("visibilitychange", () => {
				if (document.visibilityState === "visible") { console.log("script unpaused"); return resolve(); }
			});
		});
	}

	function waitHTML(css_selector, run) {
		let id = setInterval(() => {
			if (document.querySelectorAll(css_selector).length) {
				clearInterval(id);
				run();
				console.log(`found [${css_selector}]`);
			} else {
				console.log(`[${css_selector}] not found`);
			}
		}, 100);
	}

	function main() {
		let css_selector = ".el-popup-parent--hidden";
		removePopup();
		waitHTML(css_selector, () => resumeBody(css_selector.replace(".", "")));
	}

	function removePopup() {
		let css_selector = [
			"body > .el-dialog__wrapper",
			".v-modal"
		].join(",");

		document.querySelectorAll(css_selector)
			.forEach(ele => {
				ele.remove();
			});
	}

	function resumeBody(class_name = "") {
		document.body.style.overflow = "unset";
		document.body.classList.remove(class_name);
	}

	await wait_tab();
	waitHTML("body > .el-dialog__wrapper", main);
})();