Unmute Google Meet on Key Press

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

Hvad er Unmute Google Meet on Key Press?

Unmute Google Meet on Key Press er en Chrome-udvidelse udviklet af vdevacc, og dens hovedfunktion er "Unmute Google Meet on pressing spacebar and mute it again when you release it".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Unmute Google Meet on Key Press-udvidelses-CRX-fil

Download Unmute Google Meet on Key Press-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Unmute Google Meet on Key Press Unmute Google Meet on Key Press
ID mmooelabpllbfelfkbeccahfimjggglh
Officiel URL https://chromewebstore.google.com/detail/unmute-google-meet-on-key/mmooelabpllbfelfkbeccahfimjggglh
Beskrivelse Unmute Google Meet on pressing spacebar and mute it again when you release it
Filstørrelse 27.16 KB
Antal Installationer 28
Nuværende Version 1.0
Senest Opdateret 2021-01-10
Udgivelsesdato 2021-01-10
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler vdevacc
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}