屏蔽知乎使用adblock后页面顶部出现的横幅

try to take over the world!

  1. // ==UserScript==
  2. // @name 屏蔽知乎使用adblock后页面顶部出现的横幅
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.22
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.zhihu.com/*
  8. // @match http://www.zhihu.com/*
  9. // @match https://zhuanlan.zhihu.com/*
  10. // @match http://zhuanlan.zhihu.com/*
  11. // @match *://*.zhihu.com/*
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. var AdblockBanner=document.getElementsByClassName("AdblockBanner")[0];
  18. AdblockBanner.style.display="none";
  19. // Your code here...
  20. })();

QingJ © 2025

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