Twitch Audio Suppressor

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

Twitch Audio Suppressor क्या है?

Twitch Audio Suppressor Swampfox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mutes all active Twitch tabs except the one in focus."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch Audio Suppressor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
विवरण Automatically mutes all active Twitch tabs except the one in focus.
फ़ाइल का आकार 35.77 KB
स्थापना संख्या 75
वर्तमान संस्करण 1.1
अंतिम अपडेट 2020-09-15
प्रकाशन तिथि 2020-04-22
डेवलपर Swampfox
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
    }
}