Google Meet webhook
Detects when the meetings starts or ends, and triggers webhook.
Wat is Google Meet webhook?
Google Meet webhook is een Chrome-extensie ontwikkeld door ovi, en de belangrijkste functie is "Detects when the meetings starts or ends, and triggers webhook.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Meet webhook
Download Google Meet webhook-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Google Meet webhook |
ID | kfigcifpogfjcnmobcbnihhnnfbjlcfb |
Officiële URL | https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb |
Beschrijving | Detects when the meetings starts or ends, and triggers webhook. |
Bestandsgrootte | 17.47 KB |
Aantal Installaties | 56 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2021-04-26 |
Publicatiedatum | 2021-04-25 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | ovi |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |