Gather Mic Toggle
Mic Toggle on gather.town
Co to jest Gather Mic Toggle?
Gather Mic Toggle to rozszerzenie Chrome opracowane przez Caio Rodrigues, a jego główną funkcją jest „Mic Toggle on gather.town”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gather Mic Toggle
Pobierz pliki rozszerzeń Gather Mic Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
| Oficjalny URL | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
| Opis | Mic Toggle on gather.town |
| Rozmiar pliku | 15.3 KB |
| Liczba instalacji | 86 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2021-04-20 |
| Data Publikacji | 2021-04-19 |
| Deweloper | Caio Rodrigues |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |