Skip to content

Instantly share code, notes, and snippets.

@Eskuero
Created April 26, 2018 18:36
Show Gist options
  • Save Eskuero/b6a89fe361ec4688458f53d1f4980400 to your computer and use it in GitHub Desktop.
Save Eskuero/b6a89fe361ec4688458f53d1f4980400 to your computer and use it in GitHub Desktop.
Greasemonkey plugin to automatically redirect new reddit interface to the old one
// ==UserScript==
// @name New Reddit --> Old Reddit
// @include *www.reddit.com*
// @version 1
// @grant none
// ==/UserScript==
var url = window.location.toString();
window.location = url.replace('www.reddit.com', 'old.reddit.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment