Google Meet Webhooks

Trigger a webhook when the microphone or camera is turned on or off in a Google Meet.

Τι είναι το Google Meet Webhooks;

Το Google Meet Webhooks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Justin Poehnelt, και η κύρια λειτουργία του είναι "Trigger a webhook when the microphone or camera is turned on or off in a Google Meet.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Google Meet Webhooks

Λήψη αρχείων επέκτασης Google Meet Webhooks σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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/chrome-meet-webhook-extension/releases                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Meet Webhooks Google Meet Webhooks
ID lhkkhfmbgiaaagbeoblnjiklilmaeddj
Επίσημο URL https://chromewebstore.google.com/detail/google-meet-webhooks/lhkkhfmbgiaaagbeoblnjiklilmaeddj
Περιγραφή Trigger a webhook when the microphone or camera is turned on or off in a Google Meet.
Μέγεθος Αρχείου 57.55 KB
Αριθμός Εγκαταστάσεων 75
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2020-08-27
Ημερομηνία Δημοσίευσης 2020-08-15
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Justin Poehnelt
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jpoehnelt/chrome-meet-webhook-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jpoehnelt/chrome-meet-webhook-extension/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Webhooks",
    "version": "1.2.2",
    "description": "Trigger a webhook when the microphone or camera is turned on or off in a Google Meet.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "dist\/index.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "public\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "minimum_chrome_version": "75",
    "icons": {
        "16": "public\/icon16.png",
        "32": "public\/icon32.png",
        "48": "public\/icon48.png",
        "128": "public\/icon128.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAioGnb8Kt7SxXgViDHl1Hjo60zcIlfSMEQs9rFi05VJLcrh0y2PWHKwkNTMPLGneEYoMu\/mm5ADQYBDVOCmYXcOdsLGfVgYqPGG8M1YgXCXO6cpgzyKtRvSxV5E3D9iZLzeLu7uQMfzHq8fRNh2hmGNV49c\/\/5cVUYVbB6Xv9yly4kXoBneMFmYGGU5deevdNoPRepUJz7QWK3W0MtR5hNq\/lMDcLmR4YFbf2unJzBO+\/VSx5zZKWYO5dSqh51mrvqfvQ2pNuDEehkCd9k+fh1DHK+FIEF2QwqALGCcpxG7nTAIlyLHkCxE3NNrM+ku9AxtgwHSti5EH+jK\/fNzZh\/QIDAQAB"
}