// ==UserScript== // @name 不太灵免登录 // @namespace http://tampermonkey.net/ // @match *://*.mukaku.com/* // @match *://*.butailing.com/* // @match *://*.butai0.club/* // @match *://*.butai0.xyz/* // @match *://*.butai0.dev/* // @match *://*.butai0.vip/* // @match *://*.butai0.one/* // @match *://*.0bt0.com/* // @match *://*.1bt0.com/* // @match *://*.2bt0.com/* // @match *://*.3bt0.com/* // @match *://*.4bt0.com/* // @match *://*.5bt0.com/* // @match *://*.6bt0.com/* // @match *://*.7bt0.com/* // @match *://*.8bt0.com/* // @match *://*.9bt0.com/* // @icon https://greasyfork.org/vite/assets/blacklogo16-DftkYuVe.png // @grant none // @version 1.0.1 // @author - // @license MIT // @description 听说终身会员要599,这钱本脚本帮你出了 // @downloadURL https://update.greasyfork.icu/scripts/572926/%E4%B8%8D%E5%A4%AA%E7%81%B5%E5%85%8D%E7%99%BB%E5%BD%95.user.js // @updateURL https://update.greasyfork.icu/scripts/572926/%E4%B8%8D%E5%A4%AA%E7%81%B5%E5%85%8D%E7%99%BB%E5%BD%95.meta.js // ==/UserScript== (function () { const handle = () => { const el = document.querySelector('.vip-gate-overlay'); if (!el) return; const prev = el.previousElementSibling; if (prev) prev.removeAttribute('style'); el.style.setProperty('display', 'none', 'important'); }; const target = document.body; if (!target) return; new MutationObserver(handle).observe(target, { childList: true, attributes: true }); handle(); })();