您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
解除未成年账户在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(); }})();