나무위키 광고 삭제

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

目前為 2025-03-26 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name 나무위키 광고 삭제
  3. // @namespace Violentmonkey Scripts
  4. // @icon https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://namu.wiki
  5. // @match https://namu.wiki/*
  6. // @run-at document-end
  7. // @grant none
  8. // @version 1.01
  9. // @author Xlbatross
  10. // @description 2025. 3. 26. 오후 12:35:46
  11. // ==/UserScript==
  12.  
  13. const observer = new MutationObserver(mutations => {
  14. // 나무위키 파워링크 삭제 (class : LBjkIL12, Emxr1Fw8)
  15. // 나무위키 상단 이미지 삭제 (class : W-W1lQk)
  16. // 나무위키 구글 광고 이미지 삭제 (attribute : data-google-query-id)
  17. document.querySelectorAll('[class*="LBjkIL12"], [class*="Emxr1Fw8"], [class*="W-W1lQk-"], [data-google-query-id]').forEach(element => {
  18. element.remove();
  19. });
  20. });
  21. observer.observe(document.body, { childList: true, subtree: true });

QingJ © 2025

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