Twitter thread reader

Chrome extension that makes reading twitter threads easier.

Twitter thread reader là gì?

Twitter thread reader là một tiện ích mở rộng Chrome được phát triển bởi thevarunraja, và tính năng chính của nó là "Chrome extension that makes reading twitter threads easier.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitter thread reader

Tải xuống các tệp mở rộng Twitter thread reader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitter thread reader Twitter thread reader
ID cbkbehonmkldgmpdpaigonchnngpbnlm
URL Chính Thức https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm
Mô tả Chrome extension that makes reading twitter threads easier.
Kích Thước Tệp 27.21 KB
Số Lần Cài Đặt 460
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2022-02-15
Ngày Phát Hành 2022-02-07
Đánh Giá 3.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển thevarunraja
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://threadreader.thevarunraja.com/
URL Trang Chính Sách Bảo Mật https://threadreader.thevarunraja.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}