Twitch Tabs
Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Что такое Twitch Tabs?
Twitch Tabs - это расширение Chrome, разработанное RocketBuilt Apps, и его основная функция - "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Tabs
Скачайте файлы расширений Twitch Tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simply log in to you Twitch account through the extension and set your favorite streams! Easily track your favorite streamers and see when they are online. Twitch Tabs allows you to open all of your favorite online Twitch streams in tabs with the click of a button or individual streams. Update 0.4.1: Implemented Chrome Notifications with the ability to toggle on and off Bug fixes
Основная информация о расширении
Название | Twitch Tabs |
ID | bnaleaigeeaockjojmidjnpfkhaobdbg |
Официальный URL | https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg |
Описание | Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online! |
Размер файла | 1.19 MB |
Количество установок | 86 |
Текущая Версия | 0.4.1 |
Последнее Обновление | 2020-12-26 |
Дата публикации | 2020-12-25 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | RocketBuilt Apps |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/tylern88/streamertabs/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Tabs", "version": "0.4.1", "description": "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!", "permissions": [ "identity", "storage", "notifications", "alarms", "https:\/\/id.twitch.tv\/*" ], "background": { "scripts": [ "static\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "static\/js\/content.js" ], "matches": [ "https:\/\/*.twitch.tv\/*" ] } ], "icons": { "192": "logo192.png" }, "browser_action": { "default_icon": { "192": "logo192.png" }, "default_title": "Twitch Tabs", "default_popup": "popup.html" }, "options_ui": { "page": "options.html" } } |