Google Meet webhook

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

什么是Google Meet webhook?

Google Meet webhook是由ovi开发的Chrome扩展程序,该扩展的主要功能是“Detects when the meetings starts or ends, and triggers webhook.”。

扩展截图

screenshot

下载Google Meet webhook扩展crx文件

下载Google Meet webhook扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Google Meet webhook Google Meet webhook
ID kfigcifpogfjcnmobcbnihhnnfbjlcfb
官方URL https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb
简介 Detects when the meetings starts or ends, and triggers webhook.
文件大小 17.47 KB
安装次数 56
当前版本 1.0
更新时间 2021-04-26
上架时间 2021-04-25
评分 5.00/5 共1次评分
开发者 ovi
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}