Here’s a extremely small but working UserScript to redirect you to “old.reddit.com” if the URL you’re currently are visiting includes “www.reddit.com”.
It doesn’t matter if the URL is to a Sub-Reddit, a post on Reddit or a comment.
I’ve only tested it with “ViolentMonkey” but I think it should work with other UserScript plugins too.
// ==UserScript== // @name Back To Old Reddit // @description Redirect you from new Reddit to old.Reddit.com // @namespace https://www.nordicnode.com/ // @version 0.1 // @match *://www.reddit.com/* // @author https://www.nordicnode.com/ // @grant none // @copyright 2019, NordicNode - https://www.nordicnode.com/ // @run-at document-start // ==/UserScript== var currentURL = window.document.location.toString(); if(currentURL.includes("://www.reddit.com")) { var newURL = currentURL.replace("://www","://old"); window.document.location.replace(newURL); }
More articles you may find interesting...
Microsoft Virtual Pc 2007 - Run Another Operative System Inside Your Current Operative System
Microsoft Virtual PC 2007 - Run Another ...
Microsoft Virtual PC 2007 - Run Another ...
Fix Windows Defender (Setting is managed by your administrator)
This command took a really long time to ...
This command took a really long time to ...
Trackmania Nations Forever - A Free Aracade Racing Game
TrackMania Nations Forever - A Free Arac...
TrackMania Nations Forever - A Free Arac...