Twitter thread reader

Chrome extension that makes reading twitter threads easier.

What is Twitter thread reader?

Twitter thread reader is a Chrome extension developed by thevarunraja, and its main feature is "Chrome extension that makes reading twitter threads easier.".

Extension Screenshots

screenshot
screenshot

Download Twitter thread reader Extension CRX File

Download Twitter thread reader 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

                        This extension helps you read “long twitter threads” easily(similar to that of a blog or an article). It hides all the unnecessary content and shows only the relevant content in a thread, thereby enhancing your reading experience.

Just click "View Thread in Reader mode" button to turn the twitter thread into a delightful reading experience. 

 Extension is privacy friendly, no data is collected and all compute happens on your device.                    

Extension Basic Information

Name Twitter thread reader Twitter thread reader
ID cbkbehonmkldgmpdpaigonchnngpbnlm
Official URL https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm
Description Chrome extension that makes reading twitter threads easier.
File Size 27.21 KB
Installation Count 460
Current Version 0.3
Last Updated 2022-02-15
Publish Date 2022-02-07
Rating 3.00/5 Total 5 Ratings
Developer thevarunraja
Email [email protected]
Payment Type free
Extension Website https://threadreader.thevarunraja.com/
Privacy Policy Page URL https://threadreader.thevarunraja.com/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter thread reader",
    "description": "Chrome extension that makes reading twitter threads easier.",
    "version": "0.3",
    "manifest_version": 3,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "\/content\/contentscript.js"
            ],
            "css": [
                "\/styles\/index.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "threadResponse.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}