Twitch Multi Stream Auto-Mute

Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.

Twitch Multi Stream Auto-Mute क्या है?

Twitch Multi Stream Auto-Mute Mickaël Allonneau द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once."।

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

screenshot

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

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

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

                        This extension allows you to follow multiple Twitch streams at once without hearing the sound of all open streams, but only the one you're currently watching.

Every time you switch tab to another Twitch stream, the one you leave is automatically muted and the one you start watching is automatically unmuted. So whether you have 1, 2 or 10 streams open in 10 different tabs, you'll only ever hear the sound of the one you're currently on.                    

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

नाम Twitch Multi Stream Auto-Mute Twitch Multi Stream Auto-Mute
ID dnjockganjfnlkfengbekkkbplpfpold
आधिकारिक URL https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold
विवरण Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
फ़ाइल का आकार 5.83 KB
स्थापना संख्या 171
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2023-09-01
प्रकाशन तिथि 2021-05-08
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर Mickaël Allonneau
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/flawyte/twitch-multi-stream-auto-mute
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Multi Stream Auto-Mute",
    "version": "1.1.1",
    "description": "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.",
    "icons": {
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs"
    ]
}