Flashback Reklamfilter

Tar bort reklam på Flashback

  1. // ==UserScript==
  2. // @name Flashback Reklamfilter
  3. // @namespace http://userstyles.org
  4. // @description Tar bort reklam på Flashback
  5. // @author epost72
  6. // @homepage http://userstyles.org/styles/31115
  7. // @include http://www.flashback.org*
  8. // @include http://flashback.org*
  9. // @include https://www.flashback.org*
  10. // @include https://flashback.org*
  11. // @version 0.0.1.20140604193039
  12. // ==/UserScript==
  13. (function() {
  14. var css = "@namespace url(http://www.w3.org/1999/xhtml);.banner_text { \n visibility: hidden !important; \n width: 0 !important; \n height: 0 !important; \n} \ndiv#top-news,\ndiv#top-banner, \ndiv#top-banner-container,\ndiv.fb_adsys_wrapper_TextAds, \ndiv#bottom-banner-container,\ndiv#site-right > a,\ndiv#site-right > div.banner-scroll,\ndiv#site-right > div.break,\ndiv#site-right > break,\ndiv#site-right > div { \n display: none !important; \n} \n\ndiv#site-right > div.box-right:first-child { \n display: block !important; \n}";
  15. if (typeof GM_addStyle != "undefined") {
  16. GM_addStyle(css);
  17. } else if (typeof PRO_addStyle != "undefined") {
  18. PRO_addStyle(css);
  19. } else if (typeof addStyle != "undefined") {
  20. addStyle(css);
  21. } else {
  22. var heads = document.getElementsByTagName("head");
  23. if (heads.length > 0) {
  24. var node = document.createElement("style");
  25. node.type = "text/css";
  26. node.appendChild(document.createTextNode(css));
  27. heads[0].appendChild(node);
  28. }
  29. }
  30. })();

QingJ © 2025

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