Twitch Multi Stream Auto-Mute

Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.

¿Qué es Twitch Multi Stream Auto-Mute?

Twitch Multi Stream Auto-Mute es una extensión de Chrome desarrollada por Mickaël Allonneau, y su función principal es "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Twitch Multi Stream Auto-Mute

Descarga archivos de extensión Twitch Multi Stream Auto-Mute 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

                        This extension allows you to follow multiple Twitch streams at once without hearing the sound of all open streams, but only the one you're currently watching.

Every time you switch tab to another Twitch stream, the one you leave is automatically muted and the one you start watching is automatically unmuted. So whether you have 1, 2 or 10 streams open in 10 different tabs, you'll only ever hear the sound of the one you're currently on.                    

Información Básica de la Extensión

Nombre Twitch Multi Stream Auto-Mute Twitch Multi Stream Auto-Mute
ID dnjockganjfnlkfengbekkkbplpfpold
URL Oficial https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold
Descripción Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Tamaño del Archivo 5.83 KB
Cantidad de Instalaciones 171
Versión Actual 1.1.1
Última Actualización 2023-09-01
Fecha de Publicación 2021-05-08
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador Mickaël Allonneau
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/flawyte/twitch-multi-stream-auto-mute
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Multi Stream Auto-Mute",
    "version": "1.1.1",
    "description": "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.",
    "icons": {
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs"
    ]
}