Google Meet webhook
Detects when the meetings starts or ends, and triggers webhook.
Google Meet webhook क्या है?
Google Meet webhook ovi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects when the meetings starts or ends, and triggers webhook."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Meet webhook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |