Mute for Google Meet™
Universal mute toggle for Google Meet
Mute for Google Meet™ क्या है?
Mute for Google Meet™ room404.dev.ug द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Universal mute toggle for Google Meet"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mute for Google Meet™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Toggle Mic button in Google Meet - Updated to support the latest Google Meet Layout - Control the microphone button of a Google Meet™ call using a global hotkey - Default hotkey is (Ctrl + Shift + 5) to toggle microphone. - Automatically switched to the current Google Meet™ window when you are working in another application - Works outside of the browser - You need not be inside the browser to control the microphone - Receive notifications in your system tray when you toggle the microphone. This reinforces the current state of the microphone during a call especially when you are outside of your browser - Use the hotkey or click on the microphone icon in the extensions area. Switch to active Google Meet™ tab - When you are on another tab in Google Chrome (or) - When you are in another application and you want to switch to the current Meet call tab. You can now switch to the active Google Meet™ tab with the global hotkey (Ctrl + Shift + 2) Navigate to Google Meet™ home screen. - When you are in a Google Meet™ tab, and you want to go back to Meet home (meet.google.com), use the hotkey (Ctrl + Shift + 1) to get back to Meet home. Configurable hotkeys - Visit the Extensions page and use the menu on the top-left to navigate to Keyboard shortcuts. Alternatively visit chrome://extensions/shortcuts and configure.
एक्सटेंशन की मूल जानकारी
नाम | Mute for Google Meet™ |
ID | joahjeghhofndcnokdadmgjnoleckonf |
आधिकारिक URL | https://chromewebstore.google.com/detail/mute-for-google-meet/joahjeghhofndcnokdadmgjnoleckonf |
विवरण | Universal mute toggle for Google Meet |
फ़ाइल का आकार | 26.57 KB |
स्थापना संख्या | 1,857 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2021-06-11 |
प्रकाशन तिथि | 2020-07-06 |
रेटिंग | 4.73/5 कुल 15 रेटिंग्स |
डेवलपर | room404.dev.ug |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mute for Google Meet\u2122", "version": "1.0.2", "description": "Universal mute toggle for Google Meet", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "https:\/\/meet.google.com\/*", "notifications" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "togglemic.js", "returnToMeetHome.js", "switchToActiveTab.js" ] } ], "commands": { "toggle-mic": { "suggested_key": { "default": "Ctrl+Shift+5" }, "description": "Toggle Microphone", "global": true }, "return-home": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "Return to Meet Home", "global": false }, "switch-to-active-tab": { "suggested_key": { "default": "Ctrl+Shift+2" }, "description": "Switch to active Meet tab", "global": true } }, "browser_action": { "default_icon": { "32": "icons\/meet_assist_default.png" } }, "icons": { "16": "icons\/meet_assist_16.png", "48": "icons\/meet_assist_48.png", "128": "icons\/meet_assist_128.png" } } |