Greasy Fork is available in English.
听说终身会员要599,这钱本脚本帮你出了
// ==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 http://greasyfork.icu/vite/assets/blacklogo16-DftkYuVe.png
// @grant none
// @version 1.0.1
// @author -
// @license MIT
// @description 听说终身会员要599,这钱本脚本帮你出了
// ==/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();
})();