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\/*"
            ]
        }
    ]
}