Skip to content

Instantly share code, notes, and snippets.

@PotcFdk
Created December 20, 2018 20:40
Show Gist options
  • Save PotcFdk/4c4d75bf843e119147aebfdfa4cb4fa4 to your computer and use it in GitHub Desktop.
Save PotcFdk/4c4d75bf843e119147aebfdfa4cb4fa4 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name BackToOldReddit
// @namespace https://gist.github.com/PotcFdk
// @match *://www.reddit.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
var currentURL = window.document.location.toString();
if(currentURL.includes("//www")) {
var newURL = currentURL.replace("//www","//old");
window.document.location.replace(newURL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment