Last active
August 12, 2021 14:13
-
-
Save Qwerty-Space/960febdc16635ec51dfc61061d601e18 to your computer and use it in GitHub Desktop.
Redirects the Reddit Front Page to /hot/ before the page loads
This file contains 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 Hot Reddit | |
// @namespace https://oqwerty.space | |
// @author Qwerty-Space | |
// @version 2 | |
// @description Sort the Front Page by hot instead of best | |
// @icon https://www.redditstatic.com/desktop2x/img/favicon/favicon-32x32.png | |
// @include *.reddit.com/ | |
// @run-at document-start | |
// ==/UserScript== | |
window.location.replace('https://reddit.com/hot/'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment