Twitch Audio Suppressor

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

Wat is Twitch Audio Suppressor?

Twitch Audio Suppressor is een Chrome-extensie ontwikkeld door Swampfox, en de belangrijkste functie is "Automatically mutes all active Twitch tabs except the one in focus.".

Extensie Screenshots

Download het CRX-bestand van de extensie Twitch Audio Suppressor

Download Twitch Audio Suppressor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
Officiële URL https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Beschrijving Automatically mutes all active Twitch tabs except the one in focus.
Bestandsgrootte 35.77 KB
Aantal Installaties 75
Huidige Versie 1.1
Laatst Bijgewerkt 2020-09-15
Publicatiedatum 2020-04-22
Ontwikkelaar Swampfox
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
    }
}