Twitch Muter
Only plays audio of active twitch tab
O que é Twitch Muter?
Twitch Muter é uma extensão do Chrome desenvolvida por Meeoh, e sua principal característica é "Only plays audio of active twitch tab".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Muter
Baixe arquivos de extensão Twitch Muter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Twitch Muter |
ID | gcikmdppgicmifbcngddbhcfmnecnejf |
URL Oficial | https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf |
Descrição | Only plays audio of active twitch tab |
Tamanho do Arquivo | 82.98 KB |
Contagem de Instalações | 64 |
Versão Atual | 1.3 |
Última Atualização | 2016-10-19 |
Data de Publicação | 2016-10-19 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Meeoh |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/meeoh/TwitchMuter |
Idiomas Suportados | 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 } |