Twitch Multi Stream Auto-Mute
Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Vad är Twitch Multi Stream Auto-Mute?
Twitch Multi Stream Auto-Mute är en Chrome-tillägg utvecklad av Mickaël Allonneau, och dess huvudfunktion är "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".
Tilläggsskärmbilder
Ladda ner Twitch Multi Stream Auto-Mute-förlängningens CRX-fil
Ladda ner Twitch Multi Stream Auto-Mute-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
Officiell webbadress | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
Beskrivning | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
Filstorlek | 5.83 KB |
Antal Installationer | 171 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2023-09-01 |
Publiceringsdatum | 2021-05-08 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | Mickaël Allonneau |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/flawyte/twitch-multi-stream-auto-mute |
Stödda Språk | 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" ] } |