WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2026 Poal.co

149
VolunteersForUkraine https://www.reddit.com/r/volunteersForUkraine/

(post is archived)

[–] 1 pt

I don't have the app, won't let me view it.

[–] 1 pt

Switch URL to old.reddit.com

then open in Desktop Mode

on desktop in Brave I use Tampermonkey with this script:


// ==UserScript==
// [@name](/u/name)         Old reddit redirect
// [@namespace](/u/namespace)    http://tampermonkey.net/
// [@version](/u/version)      0.1
// [@description](/u/description)  Rdirect reddit links to the old domain in order to see all comments and disable certain stylings
// [@author](/u/author)       You
// [@match](/u/match)        *://*.reddit.com/*
// [@exclude](/u/exclude)      *://old.reddit.com/*
// [@grant](/u/grant)        GM.xmlHttpRequest
// [@connect](/u/connect)      reddit.com
// [@grant](/u/grant)        GM_addStyle
// [@icon](/u/icon)         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;
    }

})();
[–] 0 pt

Thanks I'll try that.

[–] 1 pt

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