Twitch Multi Stream Auto-Mute
Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Co je Twitch Multi Stream Auto-Mute?
Twitch Multi Stream Auto-Mute je rozšíření Chrome vyvinuté Mickaël Allonneau, a jeho hlavní funkcí je „Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch Multi Stream Auto-Mute
Stáhněte si soubory rozšíření Twitch Multi Stream Auto-Mute ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
Popis | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
Velikost souboru | 5.83 KB |
Počet instalací | 171 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2023-09-01 |
Datum Vydání | 2021-05-08 |
Hodnocení | 4.67/5 Celkem 3 Hodnocení |
Vývojář | Mickaël Allonneau |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/flawyte/twitch-multi-stream-auto-mute |
Podporované Jazyky | 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" ] } |