Google Meet webhook
Detects when the meetings starts or ends, and triggers webhook.
Cos'è Google Meet webhook?
Google Meet webhook è un'estensione di Chrome sviluppata da ovi, e la sua funzione principale è "Detects when the meetings starts or ends, and triggers webhook.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Meet webhook
Scarica i file di estensione Google Meet webhook in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Google Meet webhook |
ID | kfigcifpogfjcnmobcbnihhnnfbjlcfb |
URL Ufficiale | https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb |
Descrizione | Detects when the meetings starts or ends, and triggers webhook. |
Dimensione del File | 17.47 KB |
Conteggio Installazioni | 56 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-04-26 |
Data di Pubblicazione | 2021-04-25 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | ovi |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |