Unmute Google Meet on Key Press

Unmute Google Meet on pressing spacebar and mute it again when you release it

¿Qué es Unmute Google Meet on Key Press?

Unmute Google Meet on Key Press es una extensión de Chrome desarrollada por vdevacc, y su función principal es "Unmute Google Meet on pressing spacebar and mute it again when you release it".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Unmute Google Meet on Key Press

Descarga archivos de extensión Unmute Google Meet on Key Press 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

                        Isn't it too much work to unmute and mute your mic in a meeting just to say "Yes" or "Good Morning" or something small like that?!

This extension is just for that.. 
It unmutes the mic on spacebar key press and mutes it again when you release the key. Isn't it very convenient?

**This extension assumes that you keep your Google Meet on mute. Otherwise it will do the opposite. It will mute on spacebar key press and unmute it again key release.                    

Información Básica de la Extensión

Nombre Unmute Google Meet on Key Press Unmute Google Meet on Key Press
ID mmooelabpllbfelfkbeccahfimjggglh
URL Oficial https://chromewebstore.google.com/detail/unmute-google-meet-on-key/mmooelabpllbfelfkbeccahfimjggglh
Descripción Unmute Google Meet on pressing spacebar and mute it again when you release it
Tamaño del Archivo 27.16 KB
Cantidad de Instalaciones 28
Versión Actual 1.0
Última Actualización 2021-01-10
Fecha de Publicación 2021-01-10
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador vdevacc
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unmute Google Meet on Key Press",
    "version": "1.0",
    "description": "Unmute Google Meet on pressing spacebar and mute it again when you release it",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "muteUnmuteGoogleMeet"
    }
}