Google Meet webhook
Detects when the meetings starts or ends, and triggers webhook.
O que é Google Meet webhook?
Google Meet webhook é uma extensão do Chrome desenvolvida por ovi, e sua principal característica é "Detects when the meetings starts or ends, and triggers webhook.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Meet webhook
Baixe arquivos de extensão Google Meet webhook no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Google Meet webhook |
ID | kfigcifpogfjcnmobcbnihhnnfbjlcfb |
URL Oficial | https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb |
Descrição | Detects when the meetings starts or ends, and triggers webhook. |
Tamanho do Arquivo | 17.47 KB |
Contagem de Instalações | 56 |
Versão Atual | 1.0 |
Última Atualização | 2021-04-26 |
Data de Publicação | 2021-04-25 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | ovi |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |