Google Meet webhook

Detects when the meetings starts or ends, and triggers webhook.

Qu'est-ce que Google Meet webhook ?

Google Meet webhook est une extension Chrome développée par ovi, et sa fonction principale est "Detects when the meetings starts or ends, and triggers webhook.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Meet webhook

Téléchargez les fichiers d'extension Google Meet webhook au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        I made this extension to turn on the lights when the meeting start so everyone could see it, but you can experiment and make anything happen by using web hooks.

More about web hooks:
https://help.ifttt.com/hc/en-us/articles/115010230347-Webhooks-service-FAQ                    

Informations de Base sur l'Extension

Nom Google Meet webhook Google Meet webhook
ID kfigcifpogfjcnmobcbnihhnnfbjlcfb
URL Officiel https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb
Description Detects when the meetings starts or ends, and triggers webhook.
Taille du Fichier 17.47 KB
Nombre d'Installations 56
Version Actuelle 1.0
Dernière Mise à Jour 2021-04-26
Date de Publication 2021-04-25
Évaluation 5.00/5 Total 1 Évaluations
Développeur ovi
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet webhook",
    "description": "Detects when the meetings starts or ends, and triggers webhook.",
    "version": "1.0",
    "manifest_version": 3,
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ]
}