Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
¿Qué es Gather Mute Shortcut?
Gather Mute Shortcut es una extensión de Chrome desarrollada por https://shinychang.net, y su función principal es "Press SPACE to talk and custom shortcut to toggle mute".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gather Mute Shortcut
Descarga archivos de extensión Gather Mute Shortcut en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Press SPACE to un-mute Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic
Información Básica de la Extensión
Nombre | Gather Mute Shortcut |
ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
URL Oficial | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
Descripción | Press SPACE to talk and custom shortcut to toggle mute |
Tamaño del Archivo | 5.41 KB |
Cantidad de Instalaciones | 97 |
Versión Actual | 1.0.4 |
Última Actualización | 2022-02-17 |
Fecha de Publicación | 2021-08-30 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://shinychang.net |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } } |