Minecraft Wiki Redirect

Redirect Fandom and other front ends to minecraft.wiki

  1. // ==UserScript==
  2. // @name Minecraft Wiki Redirect
  3. // @description Redirect Fandom and other front ends to minecraft.wiki
  4. // @match *://*.fandom.com/wiki/*
  5. // @match *://*.breezewiki.com/minecraft/wiki/*
  6. // @match *://*.antifandom.com/minecraft/wiki/*
  7. // @grant none
  8. // @run-at document-start
  9. // @license WTFPL
  10. // @version 0.0.1.20240228135822
  11. // @namespace https://gf.qytechs.cn/users/1268060
  12. // ==/UserScript==
  13.  
  14. let destination = 'minecraft.wiki/w';
  15. let sources = ['minecraft.fandom.com/wiki', 'breezewiki.com/minecraft/wiki', 'antifandom.com/minecraft/wiki'];
  16. let currentURL = window.location.href;
  17.  
  18. for (let source of sources) {
  19. if (currentURL.includes(source)) {
  20. window.location.replace(currentURL.replace(source, destination));
  21. break;
  22. }
  23. }

QingJ © 2025

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