Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Gather Mute Shortcutคืออะไร?

Gather Mute Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shinychang.net และคุณลักษณะหลักของมันคือ "Press SPACE to talk and custom shortcut to toggle mute"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gather Mute Shortcut

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

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

                        Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic                    

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

ชื่อ Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
คำอธิบาย Press SPACE to talk and custom shortcut to toggle mute
ขนาดไฟล์ 5.41 KB
จำนวนการติดตั้ง 97
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2022-02-17
วันที่เผยแพร่ 2021-08-30
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://shinychang.net
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gather Mute Shortcut",
    "description": "Press SPACE to talk and custom shortcut to toggle mute",
    "version": "1.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.gather.town\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "toggleMute": {
            "suggested_key": {
                "default": "Ctrl+D",
                "mac": "Command+D"
            },
            "description": "Toggle Mic on\/off"
        }
    }
}