Twitch Audio Suppressor
Automatically mutes all active Twitch tabs except the one in focus.
¿Qué es Twitch Audio Suppressor?
Twitch Audio Suppressor es una extensión de Chrome desarrollada por Swampfox, y su función principal es "Automatically mutes all active Twitch tabs except the one in focus.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Audio Suppressor
Descarga archivos de extensión Twitch Audio Suppressor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Simple extension that listens for tabs playing audio from Twitch and only allows the active tab within the active window to play, muting all others. I use it all the time when switching between multiple streams.
Información Básica de la Extensión
Nombre | Twitch Audio Suppressor |
ID | bkjppbhjfbafpamcciabdjkemkbkhcjb |
URL Oficial | https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb |
Descripción | Automatically mutes all active Twitch tabs except the one in focus. |
Tamaño del Archivo | 35.77 KB |
Cantidad de Instalaciones | 75 |
Versión Actual | 1.1 |
Última Actualización | 2020-09-15 |
Fecha de Publicación | 2020-04-22 |
Desarrollador | Swampfox |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Audio Suppressor", "description": "Automatically mutes all active Twitch tabs except the one in focus.", "version": "1.1", "icons": { "128": "icon3_128.png", "48": "icon3_48.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*" ], "run_at": "document_idle", "js": [ "content.js", "avatarFetcher.js", "menu.js" ] } ], "permissions": [ "tabs", "*:\/\/twitch.tv\/*", "activeTab", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true } } |