Twitter thread reader

Chrome extension that makes reading twitter threads easier.

Twitter thread readerとは何ですか?

Twitter thread readerはthevarunrajaによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension that makes reading twitter threads easier.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Twitter thread reader拡張機能のCRXファイルをダウンロード

Twitter thread reader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Twitter thread reader Twitter thread reader
ID cbkbehonmkldgmpdpaigonchnngpbnlm
公式URL https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm
説明 Chrome extension that makes reading twitter threads easier.
ファイルサイズ 27.21 KB
インストール数 460
現在のバージョン 0.3
最終更新日 2022-02-15
公開日 2022-02-07
評価 3.00/5 合計 5 レビュー
開発者 thevarunraja
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://threadreader.thevarunraja.com/
プライバシーポリシーページのURL https://threadreader.thevarunraja.com/privacy
対応言語 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\/*"
            ]
        }
    ]
}