Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Google Meet ⇔ Slack integration क्या है?
Google Meet ⇔ Slack integration meetslack3 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Real-time Google Meet status on Slack, just like Slack huddles."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Meet ⇔ Slack integration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
🚀 Improve workplace communication by connecting Google Meet with Slack! 🌟 Google Meet ⇔ Slack automatically updates your slack status, when you join and exit meetings, even for unscheduled meetings or overflowing meetings. 👉 This is an open source project. View code or please report issues here: https://github.com/vivek-nexus/google-meet-slack-integration/issues
एक्सटेंशन की मूल जानकारी
नाम | Google Meet ⇔ Slack integration |
ID | kddjlbegfaiogihndmglihcgommbjmkc |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc |
विवरण | Real-time Google Meet status on Slack, just like Slack huddles. |
फ़ाइल का आकार | 48.46 KB |
स्थापना संख्या | 322 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2024-01-12 |
प्रकाशन तिथि | 2021-11-01 |
रेटिंग | 4.33/5 कुल 3 रेटिंग्स |
डेवलपर | meetslack3 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/vivek-nexus/google-meet-slack-integration |
सहायता पृष्ठ URL | https://github.com/vivek-nexus/google-meet-slack-integration |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet \u21d4 Slack integration", "version": "2.0.0", "manifest_version": 3, "description": "Real-time Google Meet status on Slack, just like Slack huddles.", "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "128": "icon.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "js": [ "content.js" ], "run_at": "document_end", "matches": [ "https:\/\/meet.google.com\/*" ], "exclude_matches": [ "https:\/\/meet.google.com\/" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/meet.google.com\/*", "https:\/\/slack.com\/*", "https:\/\/www.gstatic.com\/*" ], "background": { "service_worker": "background.js" } } |