Twitch Multi Stream Auto-Mute
Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Wat is Twitch Multi Stream Auto-Mute?
Twitch Multi Stream Auto-Mute is een Chrome-extensie ontwikkeld door Mickaël Allonneau, en de belangrijkste functie is "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Multi Stream Auto-Mute
Download Twitch Multi Stream Auto-Mute-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
Officiële URL | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
Beschrijving | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
Bestandsgrootte | 5.83 KB |
Aantal Installaties | 171 |
Huidige Versie | 1.1.1 |
Laatst Bijgewerkt | 2023-09-01 |
Publicatiedatum | 2021-05-08 |
Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Mickaël Allonneau |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/flawyte/twitch-multi-stream-auto-mute |
Ondersteunde Talen | 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" ] } |