Google Meet Mute
Easy muting/unmuting for when you're in a Google Meet.
Google Meet Muteคืออะไร?
Google Meet Mute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SaidaiSRi และคุณลักษณะหลักของมันคือ "Easy muting/unmuting for when you're in a Google Meet."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Mute
ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Mute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Easy muting/unmuting for when you're in a Google Meet. Easily mute and unmute your Google Meet tabs! With this extension, you can: - Set global keyboard shortcuts to toggle muting from anywhere - See if you are currently muted from the app's icon - Toggle muting by clicking the app's icon * When the app's icon is purple colored microphone, there is no active Google Meet session. * When the app's icon is microphone unmuted, the microphone is currently unmuted. * When the app's icon is microphone muted, the microphone is currently muted. To set the keyboard shortcuts, right click the app icon -> Manage Extensions. From there, click the hamburger menu -> Keyboard shortcuts. Here you can set keyboard shortcuts for any extension. You can also specify Chrome (when Chrome is in focus) or Global (when any window is in focus). Influenced by Meet Mute https://chrome.google.com/webstore/detail/meet-mute/dkgoclojlihiolngeagmhkjiglmoeeic Google Meet Mute Toggler https://chrome.google.com/webstore/detail/google-meet-mute-toggler/fkdppolbkpdoebdhflolnnkeiaoblfjc Icons made by Smashicons from www.flaticon.com Meet Mute is open source! Feel free to contribute! https://github.com/saidaisri/google-meet-mute
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Meet Mute |
ID | nnjmhmkohajomkpncmoakephgemkldkm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-meet-mute/nnjmhmkohajomkpncmoakephgemkldkm |
คำอธิบาย | Easy muting/unmuting for when you're in a Google Meet. |
ขนาดไฟล์ | 28 KB |
จำนวนการติดตั้ง | 164 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2020-09-28 |
วันที่เผยแพร่ | 2020-09-24 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | SaidaiSRi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/saidaisri/google-meet-mute |
URL หน้านโยบายความเป็นส่วนตัว | https://event.thinkcommand.com/privacy-policy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Mute", "short_name": "GoogleMeetMute", "author": "SRi", "version": "0.0.2", "manifest_version": 2, "description": "Easy muting\/unmuting for when you're in a Google Meet.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/meetmute.js" ] } ], "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Disconnected" }, "permissions": [ "tabs", "https:\/\/meet.google.com\/", "alarms" ], "commands": { "toggle_mute": { "description": "Toggle Mute", "suggested_key": { "default": "Ctrl+Shift+K" }, "global": true }, "mute": { "description": "Mute", "suggested_key": { "default": "Ctrl+Shift+M" }, "global": true }, "unmute": { "description": "Unmute", "suggested_key": { "default": "Ctrl+Shift+B" }, "global": true } } } |