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 هو إضافة Chrome تم تطويرها بواسطة Mickaël Allonneau، والميزة الرئيسية لها هي "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitch Multi Stream Auto-Mute

قم بتنزيل ملفات الامتداد Twitch Multi Stream Auto-Mute بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}