Skip to content

Instantly share code, notes, and snippets.

@heavyLobster2
Last active May 2, 2025 00:45
Show Gist options
  • Select an option

  • Save heavyLobster2/77933de4bb2362a01b1a9e8eda2f572a to your computer and use it in GitHub Desktop.

Select an option

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.4
// @author heavyLobster2
// @namespace github.com/heavyLobster2
// @downloadURL https://gist.github.com/heavyLobster2/77933de4bb2362a01b1a9e8eda2f572a/raw/ForceOldReddit.user.js
// @include *://*.reddit.com/*
// @run-at document-start
// @grant none
// ==/UserScript==
(function () {
"use strict";
var url = window.location.href;
if (url.includes("www.reddit.com")) {
if (!url.includes("www.reddit.com/media") && !url.includes("www.reddit.com/gallery") && !url.includes("www.reddit.com/poll") && !url.includes("www.reddit.com/notifications")) {
window.location.replace(url.replace("www.reddit.com", "old.reddit.com"));
}
}
if (url.includes("old.reddit.com")) {
if (url.includes("old.reddit.com/media") || url.includes("old.reddit.com/gallery") || url.includes("old.reddit.com/poll") || url.includes("old.reddit.com/notifications")) {
window.location.replace(url.replace("old.reddit.com", "www.reddit.com"));
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment