A simple script that will redirect all the old Fandom links for Minecraft wiki to the new minecraft.wiki site
- Install TamperMonkey or GreeseMonkey (Firefox only) for your browser
- Click here
- Press install
A simple script that will redirect all the old Fandom links for Minecraft wiki to the new minecraft.wiki site
| // ==UserScript== | |
| // @name Minecraft Wiki redirect | |
| // @namespace https://rtm516.co.uk/ | |
| // @version 1.1 | |
| // @description Redirect old mc wiki to the new site | |
| // @author rtm516 | |
| // @match https://minecraft.fandom.com/wiki/* | |
| // @match https://minecraft.gamepedia.com/wiki/* | |
| // @icon https://minecraft.wiki/favicon.ico | |
| // @grant none | |
| // @updateURL https://gist.github.com/rtm516/5e86e2ff0dd135ffa3486138f9ee2a31/raw/Minecraft%2520Wiki%2520redirect.user.js | |
| // @downloadURL https://gist.github.com/rtm516/5e86e2ff0dd135ffa3486138f9ee2a31/raw/Minecraft%2520Wiki%2520redirect.user.js | |
| // ==/UserScript== | |
| document.location.href = document.location.href.replace("minecraft.fandom.com/wiki", "minecraft.wiki/w") |
The current script is not compatible when the wiki is in another language
I think you should use this instead
Btw I'm not used to JavaScript, sorry if it's a bit messy