Back To Old Reddit

This tiny, superfast UserScript will redirect any URL you visit on the new version of Reddit and take you to the old version of Reddit. (https://old.reddit.com). It will also redirect you to the correct post or subreddit URL too, not just the main page.

  1. // ==UserScript==
  2. // @name Back To Old Reddit
  3. // @description This tiny, superfast UserScript will redirect any URL you visit on the new version of Reddit and take you to the old version of Reddit. (https://old.reddit.com). It will also redirect you to the correct post or subreddit URL too, not just the main page.
  4. // @namespace https://www.nordicnode.com/
  5. // @version 0.2
  6. // @match *://www.reddit.com/*
  7. // @author https://www.nordicnode.com/
  8. // @grant none
  9. // @copyright 2023 NordicNode - https://www.nordicnode.com/userscript-back-to-old-reddit-simple-redirect/
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. var currentURL = window.document.location.toString();
  14. if(currentURL.includes("://www.reddit.com")) {
  15. var newURL = currentURL.replace("://www","://old");
  16. window.document.location.replace(newURL);
  17. }