Super Meet Mute
Fast & global muting/unmuting for Google Meet.
Τι είναι το Super Meet Mute;
Το Super Meet Mute είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AdrianPal, και η κύρια λειτουργία του είναι "Fast & global muting/unmuting for Google Meet.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Super Meet Mute
Λήψη αρχείων επέκτασης Super Meet Mute σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Fastly toggle microphone in Google Meet! 1 - Define a global shortcut to mute/unmute the microphone ; 2 - Do whatever you want to do, use whatever app you want to use ; 3 - Toggle the microphone! That's it! Wherever you are on your computer, no matter what window is focused, you can toggle the microphone for your Google Meets! You can also toggle the microphone by clicking on the extension icon. ***First of all, you need to set a shortcut!*** Visit the Chrome Extension page (by right clicking on the extension icon, and then "Manage Extensions"), then the hamburger menu in the top left corner, and "Keyboard Shortcuts". You can define a "Chrome" shortcut (i.e. when the Chrome window is focused), or a Global shortcut (i.e. when any application window is focused). -------------------------- This extension is open source, originally developed by mattsimonis, and updated/fixed by AdrianPal! Feel free to contribute or update the extension on my GitHub repo: https://github.com/AdrianPal/super-meet-mute Do not hesitate to contact me if you want!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Super Meet Mute |
ID | gaahlcaciakkdkggcjhdhlhgfdblabec |
Επίσημο URL | https://chromewebstore.google.com/detail/super-meet-mute/gaahlcaciakkdkggcjhdhlhgfdblabec |
Περιγραφή | Fast & global muting/unmuting for Google Meet. |
Μέγεθος Αρχείου | 16.71 KB |
Αριθμός Εγκαταστάσεων | 3,072 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2021-06-21 |
Ημερομηνία Δημοσίευσης | 2020-05-20 |
Αξιολόγηση | 3.33/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | AdrianPal |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/AdrianPal/super-meet-mute |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/AdrianPal/super-meet-mute/issues/new |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Super Meet Mute", "short_name": "SuperMeetMute", "author": "Adrian Palumbo, from Matt Simonis", "version": "1.1.0", "manifest_version": 2, "description": "Fast & global muting\/unmuting for 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\/icon19.png", "default_title": "Disconnected" }, "permissions": [ "https:\/\/meet.google.com\/*" ], "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 } } } |