Created
July 6, 2023 12:56
-
-
Save ArthurKun21/b3b5b41c6733c07c3ebfd0df452ccb60 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
// @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