NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Fandom OSRS Wiki to Jagex OSRS Wiki Converter // @namespace http://tampermonkey.net/ // @version 1.0 // @description Automatically redirects to the new RuneScape wiki when going to a link of the old one. // @author Beagon (https://github.com/Beagon/) // @match https://oldschoolrunescape.fandom.com/wiki/* // @grant none // @run-at document-starts // @license MIT // ==/UserScript== (function () { var currentURL = window.location.href; var newURL = currentURL.replace("https://oldschoolrunescape.fandom.com/wiki", "https://oldschool.runescape.wiki/w"); window.location.replace(newURL); })();