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
官方網址 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
電子郵箱 [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\/*"
            ]
        }
    ]
}