Skip to content

Instantly share code, notes, and snippets.

@heavyLobster2
Last active October 20, 2023 17:40
Show Gist options
  • Save heavyLobster2/77933de4bb2362a01b1a9e8eda2f572a to your computer and use it in GitHub Desktop.
Save heavyLobster2/77933de4bb2362a01b1a9e8eda2f572a to your computer and use it in GitHub Desktop.
// ==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