NodeLoc++

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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 });
})();