Unmute Google Meet on Key Press

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

What is Unmute Google Meet on Key Press?

Unmute Google Meet on Key Press is a Chrome extension developed by vdevacc, and its main feature is "Unmute Google Meet on pressing spacebar and mute it again when you release it".

Extension Screenshots

screenshot
screenshot

Download Unmute Google Meet on Key Press Extension CRX File

Download Unmute Google Meet on Key Press extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Unmute Google Meet on Key Press Unmute Google Meet on Key Press
ID mmooelabpllbfelfkbeccahfimjggglh
Official URL 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
File Size 27.16 KB
Installation Count 28
Current Version 1.0
Last Updated 2021-01-10
Publish Date 2021-01-10
Rating 5.00/5 Total 2 Ratings
Developer vdevacc
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}