Last active
October 20, 2023 17:40
-
-
Save heavyLobster2/77933de4bb2362a01b1a9e8eda2f572a to your computer and use it in GitHub Desktop.
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 Force Old Reddit | |
// @description Forces old Reddit because new Reddit is awful | |
// @version 1.0.2 | |
// @author heavyLobster2 | |
// @namespace github.com/heavyLobster2 | |
// @downloadURL https://gist.github.com/heavyLobster2/77933de4bb2362a01b1a9e8eda2f572a/raw/ForceOldReddit.user.js | |
// @include *://www.reddit.com/* | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
"use strict"; | |
if (!window.location.href.includes("www.reddit.com/media") && !window.location.href.includes("www.reddit.com/gallery")) { | |
window.location.replace(window.location.href.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