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
电子邮箱 [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\/*"
            ]
        }
    ]
}