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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}