您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
钟馗之眼噩梦,可强制取消实名认证弹窗,https://www.ymypay.cn/
// ==UserScript== // @name 钟馗之眼噩梦 // @namespace https://www.ymypay.cn/ // @version 2024-07-20 // @license 钟馗之眼噩梦,可强制取消实名认证弹窗 // @description 钟馗之眼噩梦,可强制取消实名认证弹窗,https://www.ymypay.cn/ // @author AMEN // @match https://www.zoomeye.org/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zoomeye.org // @require http://code.jquery.com/jquery-1.11.0.min.js // @grant none // ==/UserScript== (function() { 'use strict'; let t = null; t = setInterval(()=>{ let flag = $('.ant-modal-mask'); if (flag !== null && flag.length !== 0){ console.log("钟馗之眼噩梦成功清除实名弹窗") $('.ant-modal-mask').remove(); $('.ant-modal-wrap').remove(); //clearInterval(t) } },100) // Your code here... })();