Gather Mic Toggle
Mic Toggle on gather.town
Was ist Gather Mic Toggle?
Gather Mic Toggle ist eine Chrome-Erweiterung, die von Caio Rodrigues entwickelt wurde, und ihr Hauptmerkmal ist "Mic Toggle on gather.town".
Erweiterungsscreenshots
Gather Mic Toggle-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gather Mic Toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
| Offizielle URL | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
| Beschreibung | Mic Toggle on gather.town |
| Dateigröße | 15.3 KB |
| Installationsanzahl | 86 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2021-04-20 |
| Veröffentlichungsdatum | 2021-04-19 |
| Entwickler | Caio Rodrigues |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |