Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

Что такое Read Only Twitter?

Read Only Twitter - это расширение Chrome, разработанное TheCleric, и его основная функция - "Enhance your Twitter experience by preventing yourself from actually interacting.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Read Only Twitter

Скачайте файлы расширений Read Only Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run.

Allow your Twitter stream to flow past you, and then let it go.

Options to disable tweets, retweets, likes, and direct messages.                    

Основная информация о расширении

Название Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
Официальный URL https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
Описание Enhance your Twitter experience by preventing yourself from actually interacting.
Размер файла 164 KB
Количество установок 56
Текущая Версия 1.0.1
Последнее Обновление 2020-08-24
Дата публикации 2020-08-21
Рейтинг 5.00/5 Всего 3 оценок
Разработчик TheCleric
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/TheCleric/ReadOnlyTwitter
URL страницы помощи https://github.com/TheCleric/ReadOnlyTwitter
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Only Twitter",
    "version": "1.0.1",
    "description": "Enhance your Twitter experience by preventing yourself from actually interacting.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "readOnlyTwitterOptions.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "readOnlyTwitterOptions.html",
        "default_icon": {
            "128": "icons\/ReadOnlyTwitter128.png",
            "512": "icons\/ReadOnlyTwitter.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "readOnlyTwitter.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'",
    "icons": {
        "128": "icons\/ReadOnlyTwitter128.png",
        "512": "icons\/ReadOnlyTwitter.png"
    }
}