Block add-block warning | deccanchronicle.com

blocks the message that blosks adblock.

目前为 2024-05-07 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Block add-block warning | deccanchronicle.com
  3. // @version 1.0.1
  4. // @description blocks the message that blosks adblock.
  5. // @author Dalveer
  6. // @match https://*.deccanchronicle.com/*
  7. // @compatible chrome
  8. // ******************************************************
  9. // Please leave review/ feedback / rating for this script
  10. // ******************************************************
  11. // @namespace https://greasyfork.org/users/797771
  12. // ==/UserScript==
  13. function f(){
  14. if(document.querySelector("#adblock-warning") == null){
  15. setTimeout(f, 1000);
  16. return;
  17. }
  18. document.querySelector("#adblock-warning").style.display="none";
  19. document.querySelector("body").style.overflow = "scroll";
  20. document.querySelector("#autoRefresh").checked = false;
  21. }
  22. f();
  23.