广告屏蔽

全广告屏蔽

// ==UserScript==
// @name           广告屏蔽
// @name:zh-TW     广告屏蔽
// @version        1.0.0
// @description    全广告屏蔽
// @description:zh-tw 全广告屏蔽
// @namespace      lm
// @author         lm
// @match        *://*.nxbrew.com/*
// @grant        none
// @license MIT
// ==/UserScript==
(function () {
    var header = document.getElementsByTagName("header")[0];
    var arr = header.getElementsByTagName("script")
// outerHTML匹配,删除profitabledisplaycontent脚本
    for (var script of arr) {
        if (script.outerHTML.indexOf("profitabledisplaycontent") != -1) {
            header.removeChild(script);
        }
    }
// 删除id为custom_html-8元素
    document.getElementById("custom_html-8").remove();
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址