Google Meet Push to Talk

Enable push to talk functionality in Google Meet

Was ist Google Meet Push to Talk?

Google Meet Push to Talk ist eine Chrome-Erweiterung, die von JCW Services entwickelt wurde, und ihr Hauptmerkmal ist "Enable push to talk functionality in Google Meet".

Erweiterungsscreenshots

screenshot

Google Meet Push to Talk-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Meet Push to Talk-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension is for Google Meet

This will enable simple push to talk functionality to make it easier to only have your microphone on when talk to prevent feedback especially in large meetings

When the spacebar is pressed down it will unmute the microphone and when released it will mute the microphone

Code - https://github.com/jcw-os/google-meet-ptt                    

Grundlegende Informationen zur Erweiterung

Name Google Meet Push to Talk Google Meet Push to Talk
ID lmbeadglfeffhemaffjdgfbgmiggafkg
Offizielle URL https://chromewebstore.google.com/detail/google-meet-push-to-talk/lmbeadglfeffhemaffjdgfbgmiggafkg
Beschreibung Enable push to talk functionality in Google Meet
Dateigröße 95.2 KB
Installationsanzahl 24,051
Aktuelle Version 1.0.6
Letztes Update 2021-05-28
Veröffentlichungsdatum 2020-05-28
Bewertung 3.36/5 Insgesamt 28 Bewertungen
Entwickler JCW Services
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Push to Talk",
    "description": "Enable push to talk functionality in Google Meet",
    "version": "1.0.6",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "512": "icons\/icon-512.png",
        "1024": "icons\/icon-1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/ptt.css"
            ]
        }
    ]
}