Google Meet webhook

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

Co to jest Google Meet webhook?

Google Meet webhook to rozszerzenie Chrome opracowane przez ovi, a jego główną funkcją jest „Detects when the meetings starts or ends, and triggers webhook.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Meet webhook

Pobierz pliki rozszerzeń Google Meet webhook w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Meet webhook Google Meet webhook
ID kfigcifpogfjcnmobcbnihhnnfbjlcfb
Oficjalny URL https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb
Opis Detects when the meetings starts or ends, and triggers webhook.
Rozmiar pliku 17.47 KB
Liczba instalacji 56
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-04-26
Data Publikacji 2021-04-25
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper ovi
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}