Twitter thread reader

Chrome extension that makes reading twitter threads easier.

Cos'è Twitter thread reader?

Twitter thread reader è un'estensione di Chrome sviluppata da thevarunraja, e la sua funzione principale è "Chrome extension that makes reading twitter threads easier.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Twitter thread reader

Scarica i file di estensione Twitter thread reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Twitter thread reader Twitter thread reader
ID cbkbehonmkldgmpdpaigonchnngpbnlm
URL Ufficiale https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm
Descrizione Chrome extension that makes reading twitter threads easier.
Dimensione del File 27.21 KB
Conteggio Installazioni 460
Versione Corrente 0.3
Ultimo Aggiornamento 2022-02-15
Data di Pubblicazione 2022-02-07
Valutazione 3.00/5 Totale 5 Valutazioni
Sviluppatore thevarunraja
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://threadreader.thevarunraja.com/
URL della Pagina della Politica sulla Privacy https://threadreader.thevarunraja.com/privacy
Lingue Supportate 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\/*"
            ]
        }
    ]
}