Twitch Audio Suppressor

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

Cos'è Twitch Audio Suppressor?

Twitch Audio Suppressor è un'estensione di Chrome sviluppata da Swampfox, e la sua funzione principale è "Automatically mutes all active Twitch tabs except the one in focus.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Twitch Audio Suppressor

Scarica i file di estensione Twitch Audio Suppressor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
URL Ufficiale https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Descrizione Automatically mutes all active Twitch tabs except the one in focus.
Dimensione del File 35.77 KB
Conteggio Installazioni 75
Versione Corrente 1.1
Ultimo Aggiornamento 2020-09-15
Data di Pubblicazione 2020-04-22
Sviluppatore Swampfox
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
    }
}