知乎广告移除

try to take over the world!

  1. // ==UserScript==
  2. // @name 知乎广告移除
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author wangb
  7. // @match *://www.zhihu.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function removeAllAd () {
  15. document.querySelectorAll('.AdblockBanner').forEach(function (ad) {ad.style.display = 'none';});
  16. var itemList = document.querySelectorAll('.Card.TopstoryItem');
  17. itemList.forEach(function (item) {
  18. if (item.querySelectorAll('.TopstoryItem-advertButton').length) {
  19. item.style.display = 'none';
  20. }
  21. });
  22. }
  23.  
  24. var ob = new MutationObserver(removeAllAd);
  25. ob.observe(document.querySelector('.TopstoryMain > div'), {childList: true});
  26.  
  27. removeAllAd();
  28. })();

QingJ © 2025

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