SC2Casts.com Adblock Nag Screen Remover

Removes the 'disable Adblock' nag screen.

  1. // ==UserScript==
  2. // @name SC2Casts.com Adblock Nag Screen Remover
  3. // @namespace http://lazy.artifact
  4. // @version 0.36
  5. // @description Removes the 'disable Adblock' nag screen.
  6. // @author Lazy Artifact
  7. // @match http://sc2casts.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. document.createElement = (function() {
  13. var base = document.createElement,
  14. scriptRegex = /script/i;
  15. return function(tag) {
  16. if(scriptRegex.test(tag)) {
  17. tag = 'noscript';
  18. }
  19. return base.call(this, tag);
  20. };
  21. })();
  22. })();

QingJ © 2025

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