WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

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==
//          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;
    }

})();
[–] 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