Switch URL to old.reddit.com
then open in Desktop Mode
on desktop in Brave I use Tampermonkey with this script:
// ==UserScript==
// Old reddit redirect
// http://tampermonkey.net/
// 0.1
// Rdirect reddit links to the old domain in order to see all comments and disable certain stylings
// You
// *://*.reddit.com/*
// *://old.reddit.com/*
// GM.xmlHttpRequest
// reddit.com
// GM_addStyle
// data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
(function() {
'use strict';
var reg = new RegExp('(.*)://(www.)?reddit.com/(.*)');
if (reg.test(document.URL))
{
var newURL = 'https://old.reddit.com'+window.location.pathname;
window.location.href = newURL;
}
})();
Thanks I'll try that.
I also use a similar one to redirect twitter to nitter in order to avoid the splash screen when you scroll down on twitter. For twitter you can also open it in a private/incognito window
(post is archived)