Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
Τι είναι το Gather Mute Shortcut;
Το Gather Mute Shortcut είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://shinychang.net, και η κύρια λειτουργία του είναι "Press SPACE to talk and custom shortcut to toggle mute".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gather Mute Shortcut
Λήψη αρχείων επέκτασης Gather Mute Shortcut σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Press SPACE to un-mute Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gather Mute Shortcut |
ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
Επίσημο URL | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
Περιγραφή | Press SPACE to talk and custom shortcut to toggle mute |
Μέγεθος Αρχείου | 5.41 KB |
Αριθμός Εγκαταστάσεων | 97 |
Τρέχουσα Έκδοση | 1.0.4 |
Τελευταία Ενημέρωση | 2022-02-17 |
Ημερομηνία Δημοσίευσης | 2021-08-30 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://shinychang.net |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gather Mute Shortcut", "description": "Press SPACE to talk and custom shortcut to toggle mute", "version": "1.0.4", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/app.gather.town\/*" ], "js": [ "content-script.js" ] } ], "commands": { "toggleMute": { "suggested_key": { "default": "Ctrl+D", "mac": "Command+D" }, "description": "Toggle Mic on\/off" } } } |