Twitch Tabs

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

Was ist Twitch Tabs?

Twitch Tabs ist eine Chrome-Erweiterung, die von RocketBuilt Apps entwickelt wurde, und ihr Hauptmerkmal ist "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Twitch Tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Twitch Tabs Twitch Tabs
ID bnaleaigeeaockjojmidjnpfkhaobdbg
Offizielle URL https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg
Beschreibung Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Dateigröße 1.19 MB
Installationsanzahl 86
Aktuelle Version 0.4.1
Letztes Update 2020-12-26
Veröffentlichungsdatum 2020-12-25
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler RocketBuilt Apps
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/tylern88/streamertabs/issues
Unterstützte Sprachen 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"
    }
}