Twitch Tabs

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

¿Qué es Twitch Tabs?

Twitch Tabs es una extensión de Chrome desarrollada por RocketBuilt Apps, y su función principal es "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Twitch Tabs

Descarga archivos de extensión Twitch Tabs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Twitch Tabs Twitch Tabs
ID bnaleaigeeaockjojmidjnpfkhaobdbg
URL Oficial https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg
Descripción Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Tamaño del Archivo 1.19 MB
Cantidad de Instalaciones 86
Versión Actual 0.4.1
Última Actualización 2020-12-26
Fecha de Publicación 2020-12-25
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador RocketBuilt Apps
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/tylern88/streamertabs/issues
Idiomas Soportados 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"
    }
}