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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}