Twitch Audio Suppressor

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

Vad är Twitch Audio Suppressor?

Twitch Audio Suppressor är en Chrome-tillägg utvecklad av Swampfox, och dess huvudfunktion är "Automatically mutes all active Twitch tabs except the one in focus.".

Tilläggsskärmbilder

Ladda ner Twitch Audio Suppressor-förlängningens CRX-fil

Ladda ner Twitch Audio Suppressor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
Officiell webbadress https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
Beskrivning Automatically mutes all active Twitch tabs except the one in focus.
Filstorlek 35.77 KB
Antal Installationer 75
Aktuell Version 1.1
Senast Uppdaterad 2020-09-15
Publiceringsdatum 2020-04-22
Utvecklare Swampfox
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}