Twitch Audio Suppressor

Automatically mutes all active Twitch tabs except the one in focus.

O que é Twitch Audio Suppressor?

Twitch Audio Suppressor é uma extensão do Chrome desenvolvida por Swampfox, e sua principal característica é "Automatically mutes all active Twitch tabs except the one in focus.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Twitch Audio Suppressor

Baixe arquivos de extensão Twitch Audio Suppressor 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

                        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.                    

Informações Básicas da Extensão

Nome Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
URL Oficial https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Descrição Automatically mutes all active Twitch tabs except the one in focus.
Tamanho do Arquivo 35.77 KB
Contagem de Instalações 75
Versão Atual 1.1
Última Atualização 2020-09-15
Data de Publicação 2020-04-22
Desenvolvedor Swampfox
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
    }
}