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
Eメール [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"
    ]
}