Google Meet webhook

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

Google Meet webhookคืออะไร?

Google Meet webhook เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ovi และคุณลักษณะหลักของมันคือ "Detects when the meetings starts or ends, and triggers webhook."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet webhook

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}