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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة سياسة الخصوصية 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\/*"
            ]
        }
    ]
}