Greasy Fork

4399随心玩

解除未成年账户在4399下的防沉迷弹窗

// ==UserScript==
// @name         4399随心玩
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  解除未成年账户在4399下的防沉迷弹窗
// @author       Keulx
// @match        https://www.4399.com/*
// @icon         https://ss2.baidu.com/-vo3dSag_xI4khGko9WTAnF6hhy/baike/w=268/sign=bad57034cf3d70cf4cfaad0bc0ddd1ba/aa18972bd40735fa23266cb498510fb30e2408ec.jpg
// @grant        none
// @license      GPL-3.0-or-later
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
window.onload = function(){
    document.querySelector("#Anti_open").remove();
    document.querySelector("#Anti_mask").remove();
    document.querySelector("#pusher").remove();
}})();