Greasy Fork is available in English.

Reddit 2023 Ui Revert

Redirects reddit.com to new.reddit.com Which restores the reddit ui from 2020-2023

// ==UserScript==
// @name         Reddit 2023 Ui Revert
// @namespace    http://tampermonkey.net/
// @version      1.0.11
// @description  Redirects reddit.com to new.reddit.com Which restores the reddit ui from 2020-2023
// @author       WindowsAurora
// @match        https://www.reddit.com/*
// @match        https://old.reddit.com/*
// @run-at       document-start
// @license      GPL3 
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (!window.location.pathname.startsWith("/media") && !window.location.pathname.startsWith("/login") && !window.location.pathname.startsWith("/mod") && !window.location.pathname.startsWith("/about") && !window.location.pathname.startsWith("/prefs") && !window.location.pathname.startsWith("/reddits") && !window.location.pathname.startsWith("/users") && !window.location.pathname.startsWith("/subreddits") && !window.location.pathname.startsWith("/wiki") && !window.location.pathname.startsWith("/contact") && !window.location.pathname.startsWith("/policies") && !window.location.pathname.startsWith("/topics") && !window.location.pathname.startsWith("/posts") && !window.location.pathname.startsWith("/best")) {
        window.location.replace("https://new.reddit.com" + window.location.pathname + window.location.search + window.location.hash);
    }
})();