Google Meet Webhooks

★★★★★
★★★★★
36 users
<
>
Dncdevice. Micro Dnc3a. Program Transmission Device For Cnc Machine
★★★★★
★★★★★
King Arthur Baking Company Flour, Gluten Free, Measure for Measure - 48 oz
★★★★★
★★★★★
LCD Wireless Weather Station with Sensor, Customizable Alerts, Weather Forecast, Temperature, Dew Point, Humidity
★★★★★
★★★★★
Sabrina Carpenter Chappell Roan J-14 Magazine 2024 Teen Celeb Magazine
★★★★★
★★★★★
50 templates, Instagram, Instagram templates, templates, Instagram digital download, download, digital download, social media template
★★★★★
★★★★★
Portable Translator
★★★★★
★★★★★

This extension calls a user defined webhook when the microphone and camera change from muted to unmuted.

Each webhook will be called with POST having Content-Type: application/json.

{
    "input": {
        "camera": "active",
        "microphone": "inactive"
    },
    "id": "aaa-bbb-ccc",
    "timestamp": 123456789,
    "previous": {
        "input": {
            "camera": "inactive",
            "microphone": "unknown"
        },
        "id": "aaa-bbb-ccc",
        "timestamp": 123456789
    }
}

Webhooks can be triggered for the following events:

change: Any state has changed.
input.change: An input status has changed.
input.active: An input has changed to active.
input.inactive: An input has changed to inactive.
input.camera.change: The camera status has changed.
input.camera.active: The camera has changed to active.
input.camera.inactive: The camera has changed to inactive.
input.microphone.change: The microphone status has changed.
input.microphone.active: The microphone has changed to active.
input.microphone.inactive: The microphone has changed to inactive.

**Known Issues:**
- If you close the tab or browser, no webhook will be fired.

**Changes: ***
https://github.com/jpoehnelt/c hrome-meet-webhook-extension/r eleases
Related