fandom redirector

redirects some fandom sites (minecraft, terraria, pathofexile, yugioh,etc) to their corresponding replacement site.

  1. // ==UserScript==
  2. // @name fandom redirector
  3. // @namespace https://miigon.net
  4. // @version 0.3
  5. // @license public domain
  6. // @description redirects some fandom sites (minecraft, terraria, pathofexile, yugioh,etc) to their corresponding replacement site.
  7. // @author Miigon
  8. // @match https://terraria.fandom.com/*
  9. // @match https://minecraft.fandom.com/*
  10. // @match https://pathofexile.fandom.com/*
  11. // @match https://yugioh.fandom.com/*
  12. // @run-at document-start
  13. // @icon https://www.google.com/s2/favicons?sz=64&domain=fandom.com
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19. const replacement_rules = {
  20. "terraria.fandom.com": "terraria.wiki.gg",
  21. "minecraft.fandom.com/wiki/": "minecraft.wiki/w/",
  22. "minecraft.fandom.com": "minecraft.wiki",
  23. // "phoenixsc": "peenixsc",
  24. "pathofexile.fandom.com": "poewiki.net",
  25. "yugioh.fandom.com": "yugipedia.com",
  26. };
  27. let href = window.location.href;
  28. let og_href = href;
  29. for (const [key, value] of Object.entries(replacement_rules)){
  30. href = href.replace(key, value);
  31. }
  32. if(href != og_href) window.location.href = href;
  33. })();

QingJ © 2025

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