Forked from andre-paulo98/minecraftwiki.user.js
Last active
November 17, 2023 21:05
-
-
Save Brottweiler/7f4704f8f189c4f08307a6eccc9be621 to your computer and use it in GitHub Desktop.
Redirect automatically from the old Minecraft Wiki (Fandom) to the new Wiki https://greasyfork.org/en/scripts/476065-redirect-to-new-minecraft-wiki
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name simple minecraft.wiki redirect | |
// @namespace https://gist.github.com/7f4704f8f189c4f08307a6eccc9be621 | |
// @match https://minecraft.fandom.com/wiki/* | |
// @match https://minecraft-archive.fandom.com/wiki/* | |
// @icon https://minecraft.wiki/favicon.ico | |
// @grant none | |
// @version 0.1 | |
// @description Simple redirect script to the new wiki. | |
// ==/UserScript== | |
window.location.hostname = "minecraft.wiki"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment