Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ArthurKun21/b3b5b41c6733c07c3ebfd0df452ccb60 to your computer and use it in GitHub Desktop.
Save ArthurKun21/b3b5b41c6733c07c3ebfd0df452ccb60 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Reddit Redirect
// @namespace https://www.reddit.com/
// @version 1.0
// @description Redirects old.reddit.com to old.reddit.com/hot
// @include https://old.reddit.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (window.location.href === "https://old.reddit.com/") {
window.location.replace("https://old.reddit.com/hot");
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment