Just Another Meet Mute
Mute microphone and disable video in all active Google Meet sessions in one click
Just Another Meet Muteคืออะไร?
Just Another Meet Mute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย minherz และคุณลักษณะหลักของมันคือ "Mute microphone and disable video in all active Google Meet sessions in one click"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Just Another Meet Mute
ดาวน์โหลดไฟล์ส่วนขยาย Just Another Meet Mute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Did you need to block video and audio streams in the Google Meet VC when there is a phone call, your child enters the room or you just need to leave to a lavatory? It is always two clicks away, right? Unless you prefer frantically moving your mouse to unhide the toolbar and then click each of the mic and camera buttons. What about a meeting where you are in mute and need to say just few words (like "Yes, I agree" or "Bye bye") and think about this nice "Push-To-Talk" feature they have in Zoom? Sometimes you do not care to extra click or another mouse move and sometimes you do. It would be great if you could just do a single click and mute all audio and all video output in all Google Meet`ings. While it is too extravaganza having more than one Meet window open, some people (like the author) appear in several meetings in parallel from time to time. What about to press a button to say something and release it to get back to mute mode. This Chrome extensions allows to do exactly that. This extension implements two functions: "global mute and hide" and "push to talk". There are quite a few Chrome extensions that do similar job (hence "just another..." in the name) but neither does exactly this simple set of features. How it works The global mute and hide mutes audio and disables video in all currently open Google meetings. Pressing the extension's icon or Alt+Shift+D combination triggers the global mute and hide. This operation is idempotent. Triggering it multiple time will have the same result. Note, there is no reverse operation. User has to unmute / enable video manually. This operation works only for Meet windows with "running" meetings. Meeting "Join screens" aren't influenced. The push to talk functionality allows temporarily unmute the current meeting. If the active Meet window is muted, a user can press and hold Shift+Space to temporarily unmute the mic of the meeting. Once user finish speaking, releasing any pressed key will muted the mic of the meeting again.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kiifeheppkpegckdeeimikhbgehjccpf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/just-another-meet-mute/kiifeheppkpegckdeeimikhbgehjccpf |
คำอธิบาย | Mute microphone and disable video in all active Google Meet sessions in one click |
ขนาดไฟล์ | 122 KB |
จำนวนการติดตั้ง | 1,287 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2020-06-29 |
วันที่เผยแพร่ | 2020-06-29 |
คะแนน | 2.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | minherz |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/minherz/jamm |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Just Another Meet Mute", "description": "Mute microphone and disable video in all active Google Meet sessions in one click", "author": "minherz", "version": "0.3", "icons": { "16": "images\/jamm2_16.png", "48": "images\/jamm2_48.png", "128": "images\/jamm2_128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*", "https:\/\/*.meet.sandbox.google.com\/*" ], "js": [ "js\/meet_tab.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+D" }, "description": "Mutes microphone and disables video in all active Google Meet sessions." } }, "browser_action": [], "permissions": [ "tabs" ] } |