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
官方網址 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"
    ]
}