🏠 返回首頁 

Greasy Fork is available in English.

Switch520 跳过入站弹窗

Switch520自动关闭入站弹窗


Installer dette script?
// ==UserScript==
// @name        Switch520 跳过入站弹窗
// @author       hihi427
// @description  Switch520自动关闭入站弹窗
// @match       https://*.gamer520.com/*
// @version      0.1
// @icon        https://www.google.com/s2/favicons?sz=64&domain=gamer520.com
// @license MIT
// @namespace https://greasyfork.org/users/1299761
// ==/UserScript==
(window.onload=function() {
'use strict';
var btn=document.querySelector('div.swal2-container.swal2-center.swal2-fade.swal2-shown > div > div.swal2-header > button');
btn.click();
})();