Twitter thread reader

Chrome extension that makes reading twitter threads easier.

Twitter thread readerคืออะไร?

Twitter thread reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thevarunraja และคุณลักษณะหลักของมันคือ "Chrome extension that makes reading twitter threads easier."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter thread reader

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}