Unmute Google Meet on Key Press

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

Qu'est-ce que Unmute Google Meet on Key Press ?

Unmute Google Meet on Key Press est une extension Chrome développée par vdevacc, et sa fonction principale est "Unmute Google Meet on pressing spacebar and mute it again when you release it".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Unmute Google Meet on Key Press

Téléchargez les fichiers d'extension Unmute Google Meet on Key Press au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Unmute Google Meet on Key Press Unmute Google Meet on Key Press
ID mmooelabpllbfelfkbeccahfimjggglh
URL Officiel https://chromewebstore.google.com/detail/unmute-google-meet-on-key/mmooelabpllbfelfkbeccahfimjggglh
Description Unmute Google Meet on pressing spacebar and mute it again when you release it
Taille du Fichier 27.16 KB
Nombre d'Installations 28
Version Actuelle 1.0
Dernière Mise à Jour 2021-01-10
Date de Publication 2021-01-10
Évaluation 5.00/5 Total 2 Évaluations
Développeur vdevacc
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}