Twitch Audio Suppressor

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

Was ist Twitch Audio Suppressor?

Twitch Audio Suppressor ist eine Chrome-Erweiterung, die von Swampfox entwickelt wurde, und ihr Hauptmerkmal ist "Automatically mutes all active Twitch tabs except the one in focus.".

Erweiterungsscreenshots

Twitch Audio Suppressor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Audio Suppressor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
Offizielle URL https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Beschreibung Automatically mutes all active Twitch tabs except the one in focus.
Dateigröße 35.77 KB
Installationsanzahl 75
Aktuelle Version 1.1
Letztes Update 2020-09-15
Veröffentlichungsdatum 2020-04-22
Entwickler Swampfox
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}