NodeLoc++

移除 NodeLoc 社区页面中的广告元素

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         NodeLoc++
// @namespace    http://tampermonkey.net/
// @version      1.3
// @author       红色塑料袋
// @description  移除 NodeLoc 社区页面中的广告元素
// @match        *://www.nodeloc.com/*
// @match        *://www.nodeloc.cc/*
// @grant        GM_addStyle
// @run-at       document-idle
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    // 隐藏侧边栏广告
    GM_addStyle(`
        .sidebar-ads-wrapper,
        .sidebar-ads-container,
        .sidebar-ad-item,
        .sidebar-ad-link,
        .sidebar-ad-image,
        .small-ads-section,
        .small-ads-grid,
        .medium-ads-section,
        .large-ads-section,
        iframe[src*="ad"] {
            display: none !important;
        }
    `);

    // 动态移除后续加载的广告元素
    const observer = new MutationObserver((mutations) => {
        document.querySelectorAll('.sidebar-ads-wrapper').forEach(el => el.remove());
        document.querySelectorAll('iframe[src*="ad"]').forEach(el => el.remove());
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();