Twitch Multi Stream Auto-Mute
Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Cos'è Twitch Multi Stream Auto-Mute?
Twitch Multi Stream Auto-Mute è un'estensione di Chrome sviluppata da Mickaël Allonneau, e la sua funzione principale è "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Multi Stream Auto-Mute
Scarica i file di estensione Twitch Multi Stream Auto-Mute in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
Descrizione | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
Dimensione del File | 5.83 KB |
Conteggio Installazioni | 171 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2023-09-01 |
Data di Pubblicazione | 2021-05-08 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | Mickaël Allonneau |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/flawyte/twitch-multi-stream-auto-mute |
Lingue Supportate | 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" ] } |