Google Meet Global Shortcuts
Added global shortcuts to google meet, to mute, unmute & toggle the microphone
Google Meet Global Shortcutsคืออะไร?
Google Meet Global Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marko และคุณลักษณะหลักของมันคือ "Added global shortcuts to google meet, to mute, unmute & toggle the microphone"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Global Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Global Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds global shortcut keys to turn the microphone on/off in Google Meets. This extension: - Allows you to turn your microphone on/off from without having the Meeting Tab or Chrome open. - Always see if you are muted or not. * If the app icon is gray, no meeting was detected. * If the app icon is green, you are not muted in a meeting. * If the app icon is red, you are muted in a meeting. To change the shortcut, click "Open shortcut settings" on the application pop-up window. Here you can set all key combinations and whether the key combination should work globally or only when Chrome is focused.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Meet Global Shortcuts |
ID | fjbngkpiplemfiflfmbhbjicmmfdcgni |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-meet-global-shortc/fjbngkpiplemfiflfmbhbjicmmfdcgni |
คำอธิบาย | Added global shortcuts to google meet, to mute, unmute & toggle the microphone |
ขนาดไฟล์ | 34.36 KB |
จำนวนการติดตั้ง | 817 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2020-04-30 |
วันที่เผยแพร่ | 2020-04-30 |
คะแนน | 3.60/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | Marko |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "1.0.3", "description": "__MSG_extDescription__", "background": { "scripts": [ "background.js" ] }, "commands": { "toggleMicrophone": { "description": "__MSG_toggleMicrophone__", "suggested_key": { "default": "Ctrl+Shift+K" }, "global": true }, "muteMicrophone": { "description": "__MSG_muteMicrophone__", "global": true }, "unmuteMicrophone": { "description": "__MSG_unmuteMicrophone__", "global": true } }, "browser_action": { "default_title": "__MSG_extName__", "default_popup": "popup.html", "default_icon": { "16": "icons\/default\/16.png", "32": "icons\/default\/32.png" } }, "icons": { "16": "icons\/default\/16.png", "32": "icons\/default\/32.png" }, "default_locale": "en", "permissions": [ "https:\/\/meet.google.com\/*", "tabs" ], "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_idle" } ] } |