Twitch Audio Suppressor

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

Qu'est-ce que Twitch Audio Suppressor ?

Twitch Audio Suppressor est une extension Chrome développée par Swampfox, et sa fonction principale est "Automatically mutes all active Twitch tabs except the one in focus.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Twitch Audio Suppressor

Téléchargez les fichiers d'extension Twitch Audio Suppressor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
URL Officiel https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Description Automatically mutes all active Twitch tabs except the one in focus.
Taille du Fichier 35.77 KB
Nombre d'Installations 75
Version Actuelle 1.1
Dernière Mise à Jour 2020-09-15
Date de Publication 2020-04-22
Développeur Swampfox
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}