Twitch Tabs

Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!

Co to jest Twitch Tabs?

Twitch Tabs to rozszerzenie Chrome opracowane przez RocketBuilt Apps, a jego główną funkcją jest „Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Twitch Tabs

Pobierz pliki rozszerzeń Twitch Tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Tabs Twitch Tabs
ID bnaleaigeeaockjojmidjnpfkhaobdbg
Oficjalny URL https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg
Opis Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Rozmiar pliku 1.19 MB
Liczba instalacji 86
Aktualna Wersja 0.4.1
Ostatnia Aktualizacja 2020-12-26
Data Publikacji 2020-12-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper RocketBuilt Apps
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/tylern88/streamertabs/issues
Obsługiwane Języki 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"
    }
}