Twitter thread reader

Chrome extension that makes reading twitter threads easier.

O que é Twitter thread reader?

Twitter thread reader é uma extensão do Chrome desenvolvida por thevarunraja, e sua principal característica é "Chrome extension that makes reading twitter threads easier.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Twitter thread reader

Baixe arquivos de extensão Twitter thread reader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Twitter thread reader Twitter thread reader
ID cbkbehonmkldgmpdpaigonchnngpbnlm
URL Oficial https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm
Descrição Chrome extension that makes reading twitter threads easier.
Tamanho do Arquivo 27.21 KB
Contagem de Instalações 460
Versão Atual 0.3
Última Atualização 2022-02-15
Data de Publicação 2022-02-07
Classificação 3.00/5 Total de 5 Avaliações
Desenvolvedor thevarunraja
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://threadreader.thevarunraja.com/
URL da Página de Política de Privacidade https://threadreader.thevarunraja.com/privacy
Idiomas Suportados 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\/*"
            ]
        }
    ]
}