Google Meet webhook

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

Google Meet webhook là gì?

Google Meet webhook là một tiện ích mở rộng Chrome được phát triển bởi ovi, và tính năng chính của nó là "Detects when the meetings starts or ends, and triggers webhook.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Meet webhook

Tải xuống các tệp mở rộng Google Meet webhook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Meet webhook Google Meet webhook
ID kfigcifpogfjcnmobcbnihhnnfbjlcfb
URL Chính Thức https://chromewebstore.google.com/detail/google-meet-webhook/kfigcifpogfjcnmobcbnihhnnfbjlcfb
Mô tả Detects when the meetings starts or ends, and triggers webhook.
Kích Thước Tệp 17.47 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-04-26
Ngày Phát Hành 2021-04-25
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ovi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}