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'est-ce que Twitch Multi Stream Auto-Mute ?
Twitch Multi Stream Auto-Mute est une extension Chrome développée par Mickaël Allonneau, et sa fonction principale est "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Multi Stream Auto-Mute
Téléchargez les fichiers d'extension Twitch Multi Stream Auto-Mute au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
URL Officiel | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
Description | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
Taille du Fichier | 5.83 KB |
Nombre d'Installations | 171 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2023-09-01 |
Date de Publication | 2021-05-08 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | Mickaël Allonneau |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/flawyte/twitch-multi-stream-auto-mute |
Langues Prises en Charge | 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" ] } |