WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

1.4K

Twitter doesn't allow reading tweets if not registered any more. It has become like Facebook. In order to read tweets you have to register now.

Twitter doesn't allow reading tweets if not registered any more. It has become like Facebook. In order to read tweets you have to register now.

(post is archived)

[–] 0 pt

Use a private window or Nitter.

I use this TamperMonkey script to redirect to Nitter automatically.


// ==UserScript==
//          Twitter to Nitter
//     http://tampermonkey.net/
//       0.1
//   Redirect Twitter links to Nitter in order to avoid the splash screen while scrolling.
//        You
//         *://*.twitter.com/*
//         *://twitter.com/*
//         GM.xmlHttpRequest
//       reddit.com
//         GM_addStyle
//          data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==

(function() {
    'use strict';
    var reg = new RegExp('(.*)://((.*).)?twitter.com/(.*)');
    if (reg.test(document.URL))
    {
        var newURL = 'https://nitter.net'+window.location.pathname;
        window.location.href = newURL;
    }

})();