Twitter Login Hider

Browse Twitter without an account!

What is Twitter Login Hider?

Twitter Login Hider is a Chrome extension developed by James Presario, and its main feature is "Browse Twitter without an account!".

Extension Screenshots

screenshot

Download Twitter Login Hider Extension CRX File

Download Twitter Login Hider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Trying to view Twitter but don't have an account? Normally after a few scrolls, you'll be prompted to create one to continue browsing. With this extension, that login prompt is removed, allowing you to view Twitter without an account!                    

Extension Basic Information

Name Twitter Login Hider Twitter Login Hider
ID eonjdimglkmekijpodngceidnbdajcba
Official URL https://chromewebstore.google.com/detail/twitter-login-hider/eonjdimglkmekijpodngceidnbdajcba
Description Browse Twitter without an account!
File Size 107 KB
Installation Count 102
Current Version 1.00
Last Updated 2022-09-17
Publish Date 2022-09-13
Rating 5.00/5 Total 1 Ratings
Developer James Presario
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Login Hider",
    "description": "Browse Twitter without an account!",
    "version": "1.00",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icons\/icon16.png",
            "32": "\/images\/icons\/icon32.png",
            "48": "\/images\/icons\/icon48.png",
            "128": "\/images\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icons\/icon16.png",
        "32": "\/images\/icons\/icon32.png",
        "48": "\/images\/icons\/icon48.png",
        "128": "\/images\/icons\/icon128.png"
    },
    "options_page": "onboarding.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "nologin.js"
            ],
            "run_at": "document_idle"
        }
    ]
}