Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
Что такое Gather Mute Shortcut?
Gather Mute Shortcut - это расширение Chrome, разработанное https://shinychang.net, и его основная функция - "Press SPACE to talk and custom shortcut to toggle mute".
Снимки экрана расширения
Скачать файл CRX расширения Gather Mute Shortcut
Скачайте файлы расширений Gather Mute Shortcut в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic Основная информация о расширении
| Название | |
| ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
| Официальный URL | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
| Описание | Press SPACE to talk and custom shortcut to toggle mute |
| Размер файла | 5.41 KB |
| Количество установок | 97 |
| Текущая Версия | 1.0.4 |
| Последнее Обновление | 2022-02-17 |
| Дата публикации | 2021-08-30 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | https://shinychang.net |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
}
}
} | |