Gather Mic Toggle
Mic Toggle on gather.town
Τι είναι το Gather Mic Toggle;
Το Gather Mic Toggle είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Caio Rodrigues, και η κύρια λειτουργία του είναι "Mic Toggle on gather.town".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gather Mic Toggle
Λήψη αρχείων επέκτασης Gather Mic Toggle σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Provides a microphone toggling keyboard shortcut on the video-calling virtual space app Gather.town (https://gather.town/). Default is Ctrl+Q, but you can customize it on chrome://extensions/shortcuts. *Disclaimer: the extension is not provided by Gather Town officially and the author has no affiliation with it
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gather Mic Toggle |
ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
Επίσημο URL | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
Περιγραφή | Mic Toggle on gather.town |
Μέγεθος Αρχείου | 15.3 KB |
Αριθμός Εγκαταστάσεων | 86 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2021-04-20 |
Ημερομηνία Δημοσίευσης | 2021-04-19 |
Προγραμματιστής | Caio Rodrigues |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gather Mic Toggle", "description": "Mic Toggle on gather.town", "version": "1.0", "manifest_version": 2, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" }, "permissions": [ "https:\/\/gather.town\/app\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/gather.town\/app\/*" ], "js": [ "content.js" ] } ], "commands": { "toggle": { "suggested_key": { "default": "Ctrl+Q", "mac": "Command+Q" }, "description": "Mute\/unmute", "global": true } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" } } |