Twitch Live Extension

A browser extension that lists your live followed streamers and sends notifications when they start a new stream

Что такое Twitch Live Extension?

Twitch Live Extension - это расширение Chrome, разработанное Pedro Silva, и его основная функция - "A browser extension that lists your live followed streamers and sends notifications when they start a new stream".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Twitch Live Extension

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

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

                        To start using it, open it, log in with your Twitch account so that the extension has access only to your public information and your follows, and, every time you click on the extension icon,
you will see the streamers that you follow that are live.

This extension supports *Just Went Live* notifications. If you want to enable them, open the extension, go to *Settings* and enable the Just Went Live notifications.

There's also a button to log out from your Twitch account.

Special thanks to everyone that helped test this extension: https://github.com/PedroS11/twitch-live-extension#contribution                    

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

Название Twitch Live Extension Twitch Live Extension
ID nlnfdlcbnpafokhpjfffmoobbejpedgj
Официальный URL https://chromewebstore.google.com/detail/twitch-live-extension/nlnfdlcbnpafokhpjfffmoobbejpedgj
Описание A browser extension that lists your live followed streamers and sends notifications when they start a new stream
Размер файла 143 KB
Количество установок 10,126
Текущая Версия 4.2.1
Последнее Обновление 2023-09-27
Дата публикации 2020-10-13
Рейтинг 4.49/5 Всего 59 оценок
Разработчик Pedro Silva
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/PedroS11/twitch-live-extension
URL страницы помощи https://github.com/PedroS11/twitch-live-extension/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Live Extension",
    "description": "A browser extension that lists your live followed streamers and sends notifications when they start a new stream",
    "version": "4.2.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Twitch Live Extension",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/id.twitch.tv\/oauth2\/*",
        "https:\/\/api.twitch.tv\/helix\/*"
    ],
    "permissions": [
        "identity",
        "notifications",
        "alarms",
        "storage",
        "idle"
    ]
}