NodeLoc++

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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