Greasy Fork镜像 支持简体中文。

Remove Fandom Garbage X

简化 Fondom 界面,移除各个广告。

  1. // ==UserScript==
  2. // @name Remove Fandom Garbage X
  3. // @description 简化 Fondom 界面,移除各个广告。
  4. // @namespace https://gf.qytechs.cn/zh-CN/scripts/431460-remove-fandom-garbage-x
  5. // @author WeiHengYi
  6. // @version 2.0.3
  7. // @license GPL-3.0-only
  8. // @grant GM_addStyle
  9. // @run-at document-start
  10. // @include http://fandom.com/*
  11. // @include https://fandom.com/*
  12. // @include http://*.fandom.com/*
  13. // @include https://*.fandom.com/*
  14. // ==/UserScript==
  15.  
  16.  
  17. (function() {
  18. let css = `
  19. #mixed-content-footer, .wds-global-footer, #rail-boxad-wrapper, .top-ads-container {
  20. display:none;
  21. }
  22. `;
  23. if (typeof GM_addStyle !== "undefined") {
  24. GM_addStyle(css);
  25. } else {
  26. let styleNode = document.createElement("style");
  27. styleNode.appendChild(document.createTextNode(css));
  28. (document.querySelector("head") || document.documentElement).appendChild(styleNode);
  29. }
  30. })();

QingJ © 2025

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