Twitch Audio Suppressor

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

What is Twitch Audio Suppressor?

Twitch Audio Suppressor is a Chrome extension developed by Swampfox, and its main feature is "Automatically mutes all active Twitch tabs except the one in focus.".

Extension Screenshots

Download Twitch Audio Suppressor Extension CRX File

Download Twitch Audio Suppressor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
Official URL https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Description Automatically mutes all active Twitch tabs except the one in focus.
File Size 35.77 KB
Installation Count 75
Current Version 1.1
Last Updated 2020-09-15
Publish Date 2020-04-22
Developer Swampfox
Email [email protected]
Payment Type free
Supported Languages 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
    }
}