나무위키 광고 삭제

2025. 3. 26. 오후 12:35:46

目前为 2025-03-26 提交的版本。查看 最新版本

// ==UserScript==
// @name        나무위키 광고 삭제
// @namespace   Violentmonkey Scripts
// @icon        https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://namu.wiki
// @match       https://namu.wiki/*
// @run-at      document-end
// @grant       none
// @version     1.01
// @author      Xlbatross
// @description 2025. 3. 26. 오후 12:35:46
// ==/UserScript==

const observer = new MutationObserver(mutations => {
    // 나무위키 파워링크 삭제 (class : LBjkIL12, Emxr1Fw8)
    // 나무위키 상단 이미지 삭제 (class : W-W1lQk)
    // 나무위키 구글 광고 이미지 삭제 (attribute : data-google-query-id)
    document.querySelectorAll('[class*="LBjkIL12"], [class*="Emxr1Fw8"], [class*="W-W1lQk-"], [data-google-query-id]').forEach(element => {
        element.remove();
    });
});
observer.observe(document.body, { childList: true, subtree: true });

QingJ © 2025

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