Twitch Audio Suppressor

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

Twitch Audio Suppressorคืออะไร?

Twitch Audio Suppressor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Swampfox และคุณลักษณะหลักของมันคือ "Automatically mutes all active Twitch tabs except the one in focus."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Audio Suppressor

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Audio Suppressor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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