Skip to content

Instantly share code, notes, and snippets.

@simshaun
Created December 1, 2018 06:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save simshaun/eeb342bf8c5130147fa01546d218163a to your computer and use it in GitHub Desktop.
Save simshaun/eeb342bf8c5130147fa01546d218163a to your computer and use it in GitHub Desktop.
Greasemonkey/Violentmonkey Userscript to force redirect to https://old.reddit.com
// ==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