Skip to content

Instantly share code, notes, and snippets.

@4194304
Forked from rtm516/Minecraft Wiki redirect.user.js
Last active September 27, 2023 02:12
Show Gist options
  • Select an option

  • Save 4194304/e3d40a05e3d1490cfb2a20b5e0bdd5d7 to your computer and use it in GitHub Desktop.

Select an option

Save 4194304/e3d40a05e3d1490cfb2a20b5e0bdd5d7 to your computer and use it in GitHub Desktop.
Minecraft Wiki redirect
// ==UserScript==
// @name Minecraft Wiki redirect
// @namespace https://rtm516.co.uk/
// @version 1.0
// @description Redirect old mc wiki to the new site
// @author You
// @match https://minecraft.fandom.com/wiki/*
// @match https://minecraft.gamepedia.com/wiki/*
// @icon https://minecraft.wiki/favicon.ico
// @grant none
// ==/UserScript==
document.location.href = document.location.href.replace("minecraft.fandom.com/wiki", "minecraft.wiki/w")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment