Twitch Muter
Only plays audio of active twitch tab
¿Qué es Twitch Muter?
Twitch Muter es una extensión de Chrome desarrollada por Meeoh, y su función principal es "Only plays audio of active twitch tab".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Muter
Descarga archivos de extensión Twitch Muter 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
Mutes inactive twitch tabs! If you ever have multiple twitch streams open at once in different tabs, but only want the active tab to have audio playing, just activate the extension via the icon in the top right, and voila! ***IMPORTANT*** With all your twitch tabs open, activate the extension and they'll all become muted, now whenever you switch tabs to a twitch stream, its audio will be activated. Report issues here: https://github.com/meeoh/TwitchMuter/issues View changelog here: https://github.com/meeoh/TwitchMuter/wiki/Chrome-Extension-Change-Log
Información Básica de la Extensión
Nombre | Twitch Muter |
ID | gcikmdppgicmifbcngddbhcfmnecnejf |
URL Oficial | https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf |
Descripción | Only plays audio of active twitch tab |
Tamaño del Archivo | 82.98 KB |
Cantidad de Instalaciones | 64 |
Versión Actual | 1.3 |
Última Actualización | 2016-10-19 |
Fecha de Publicación | 2016-10-19 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | Meeoh |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/meeoh/TwitchMuter |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Muter", "description": "Only plays audio of active twitch tab", "version": "1.3", "permissions": [ "activeTab", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "jquery-3.1.1.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-3.1.1.js", "content_script.js" ] } ], "browser_action": { "default_title": "Toggle", "default_icon": "volumeOff.png" }, "manifest_version": 2 } |