Gather Mic Toggle
Mic Toggle on gather.town
Qu'est-ce que Gather Mic Toggle ?
Gather Mic Toggle est une extension Chrome développée par Caio Rodrigues, et sa fonction principale est "Mic Toggle on gather.town".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gather Mic Toggle
Téléchargez les fichiers d'extension Gather Mic Toggle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Gather Mic Toggle |
ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
URL Officiel | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
Description | Mic Toggle on gather.town |
Taille du Fichier | 15.3 KB |
Nombre d'Installations | 86 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-04-20 |
Date de Publication | 2021-04-19 |
Développeur | Caio Rodrigues |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |