Created
December 1, 2018 06:29
-
-
Save simshaun/eeb342bf8c5130147fa01546d218163a to your computer and use it in GitHub Desktop.
Greasemonkey/Violentmonkey Userscript to force redirect to https://old.reddit.com
This file contains 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 Reddit redirect to old.reddit.com | |
// @match *://www.reddit.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
(function () { | |
window.location.href = 'https://old.reddit.com' + location.pathname; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment