Gather Mic Toggle
Mic Toggle on gather.town
Gather Mic Toggleคืออะไร?
Gather Mic Toggle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Caio Rodrigues และคุณลักษณะหลักของมันคือ "Mic Toggle on gather.town"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gather Mic Toggle
ดาวน์โหลดไฟล์ส่วนขยาย Gather Mic Toggle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Provides a microphone toggling keyboard shortcut on the video-calling virtual space app Gather.town (https://gather.town/). Default is Ctrl+Q, but you can customize it on chrome://extensions/shortcuts. *Disclaimer: the extension is not provided by Gather Town officially and the author has no affiliation with it
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gather Mic Toggle |
ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
คำอธิบาย | Mic Toggle on gather.town |
ขนาดไฟล์ | 15.3 KB |
จำนวนการติดตั้ง | 86 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-04-20 |
วันที่เผยแพร่ | 2021-04-19 |
ผู้พัฒนา | Caio Rodrigues |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gather Mic Toggle", "description": "Mic Toggle on gather.town", "version": "1.0", "manifest_version": 2, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" }, "permissions": [ "https:\/\/gather.town\/app\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/gather.town\/app\/*" ], "js": [ "content.js" ] } ], "commands": { "toggle": { "suggested_key": { "default": "Ctrl+Q", "mac": "Command+Q" }, "description": "Mute\/unmute", "global": true } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" } } |