// ==UserScript== // @name 自动清除商户后台续费弹窗【原生无jQuery版】 // @namespace http://tampermonkey.net/ // @version 2.0 // @description 纯原生JS,不依赖jQuery,自动删除续费弹窗 // @author You // @match https://houtai.liantuofu.com/* // @grant none // ==/UserScript== (function() { 'use strict'; setInterval(function (){ // 删除弹窗本体 const popBox = document.getElementById('purchase-box'); if(popBox) popBox.remove(); // 删除所有purchase_box类残留 document.querySelectorAll("[class*='purchase_box']").forEach(el=>el.remove()); //删除遮罩层 document.querySelectorAll('.modal-backdrop').forEach(el=>el.remove()); //解锁页面 document.body.classList.remove('modal-open'); document.body.style.overflow = "auto"; }, 300); })();