屏蔽IT之家AdBlock提示

隐藏ADBlock banner

目前为 2018-09-25 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name 屏蔽IT之家AdBlock提示
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description 隐藏ADBlock banner
  6. // @author isaac young
  7. // @match https://*.ithome.com/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var s = document.createElement('style');
  15. s.innerHTML = '.AdblockBanner {display: none!important;}';
  16. document.querySelector('head').appendChild(s);
  17. // Your code here...
  18. })();

QingJ © 2025

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