Twitch Audio Suppressor

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

Hvad er Twitch Audio Suppressor?

Twitch Audio Suppressor er en Chrome-udvidelse udviklet af Swampfox, og dens hovedfunktion er "Automatically mutes all active Twitch tabs except the one in focus.".

Udvidelsesskærmbilleder

Download Twitch Audio Suppressor-udvidelses-CRX-fil

Download Twitch Audio Suppressor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
Officiel URL https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Beskrivelse Automatically mutes all active Twitch tabs except the one in focus.
Filstørrelse 35.77 KB
Antal Installationer 75
Nuværende Version 1.1
Senest Opdateret 2020-09-15
Udgivelsesdato 2020-04-22
Udvikler Swampfox
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
    }
}