Twitch Muter

Only plays audio of active twitch tab

Twitch Muterคืออะไร?

Twitch Muter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Meeoh และคุณลักษณะหลักของมันคือ "Only plays audio of active twitch tab"

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

screenshot

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

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

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

                        Mutes inactive twitch tabs! If you ever have multiple twitch streams open at once in different tabs, but only want the active tab to have audio playing, just activate the extension via the icon in the top right, and voila!

***IMPORTANT***
With all your twitch tabs open, activate the extension and they'll all become muted, now whenever you switch tabs to a twitch stream, its audio will be activated.

Report issues here: https://github.com/meeoh/TwitchMuter/issues
View changelog here: https://github.com/meeoh/TwitchMuter/wiki/Chrome-Extension-Change-Log                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
คำอธิบาย Only plays audio of active twitch tab
ขนาดไฟล์ 82.98 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2016-10-19
วันที่เผยแพร่ 2016-10-19
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Meeoh
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/meeoh/TwitchMuter
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Muter",
    "description": "Only plays audio of active twitch tab",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "jquery-3.1.1.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-3.1.1.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Toggle",
        "default_icon": "volumeOff.png"
    },
    "manifest_version": 2
}