Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
Co to jest Gather Mute Shortcut?
Gather Mute Shortcut to rozszerzenie Chrome opracowane przez https://shinychang.net, a jego główną funkcją jest „Press SPACE to talk and custom shortcut to toggle mute”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gather Mute Shortcut
Pobierz pliki rozszerzeń Gather Mute Shortcut 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
Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
| Oficjalny URL | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
| Opis | Press SPACE to talk and custom shortcut to toggle mute |
| Rozmiar pliku | 5.41 KB |
| Liczba instalacji | 97 |
| Aktualna Wersja | 1.0.4 |
| Ostatnia Aktualizacja | 2022-02-17 |
| Data Publikacji | 2021-08-30 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | https://shinychang.net |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
}
} | |