Unmute Google Meet on Key Press

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

Vad är Unmute Google Meet on Key Press?

Unmute Google Meet on Key Press är en Chrome-tillägg utvecklad av vdevacc, och dess huvudfunktion är "Unmute Google Meet on pressing spacebar and mute it again when you release it".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Unmute Google Meet on Key Press-förlängningens CRX-fil

Ladda ner Unmute Google Meet on Key Press-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Unmute Google Meet on Key Press Unmute Google Meet on Key Press
ID mmooelabpllbfelfkbeccahfimjggglh
Officiell webbadress https://chromewebstore.google.com/detail/unmute-google-meet-on-key/mmooelabpllbfelfkbeccahfimjggglh
Beskrivning Unmute Google Meet on pressing spacebar and mute it again when you release it
Filstorlek 27.16 KB
Antal Installationer 28
Aktuell Version 1.0
Senast Uppdaterad 2021-01-10
Publiceringsdatum 2021-01-10
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare vdevacc
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}