Skip to content

Instantly share code, notes, and snippets.

@Brottweiler
Forked from andre-paulo98/minecraftwiki.user.js
Last active November 17, 2023 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Brottweiler/7f4704f8f189c4f08307a6eccc9be621 to your computer and use it in GitHub Desktop.
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
// ==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