Created
December 1, 2018 06:29
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