Twitch Notifications

Notifies you when one of the streamers you are following starts streaming.

Что такое Twitch Notifications?

Twitch Notifications - это расширение Chrome, разработанное mickelus, и его основная функция - "Notifies you when one of the streamers you are following starts streaming.".

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

screenshot
screenshot

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

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

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

                        All that you need to do to get started is to put your twitch username in the username field on the options page. A link to the option page can be found under "Tools" > "Extensions" > "Twitch notifications".

Clicking a notification will open the stream in a new tab.

The source is on github: https://github.com/mickelus/twitchNotifications.
Feel free to submit bug reports, feature requests or pull requests.                    

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

Название Twitch Notifications Twitch Notifications
ID inkakioanfdnbbikoenlmmpaomnangkh
Официальный URL https://chromewebstore.google.com/detail/twitch-notifications/inkakioanfdnbbikoenlmmpaomnangkh
Описание Notifies you when one of the streamers you are following starts streaming.
Размер файла 38.46 KB
Количество установок 211
Текущая Версия 1.1
Последнее Обновление 2016-02-10
Дата публикации 2016-02-10
Рейтинг 2.60/5 Всего 5 оценок
Разработчик mickelus
Тип оплаты free
Поддерживаемые языки en,sv
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.1",
    "content_security_policy": "image-src 'self' *:\/\/static-cdn.jtvnw.net\/*; object-src 'self'; script-src 'self'",
    "permissions": [
        "alarms",
        "storage",
        "notifications",
        "cookies",
        "*:\/\/api.twitch.tv\/*",
        "*:\/\/static-cdn.jtvnw.net\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}