Slack Video Meetings
A simple extension that allows you to schedule Slack Video Meetings and stream your desktop into Slack Video conferences.
Slack Video Meetings क्या है?
Slack Video Meetings https://slack.video द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that allows you to schedule Slack Video Meetings and stream your desktop into Slack Video conferences."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Slack Video Meetings एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
एक्सटेंशन की मूल जानकारी
नाम | Slack Video Meetings |
ID | baeblfkhlplnglebdnhjagnplekdphbo |
आधिकारिक URL | https://chromewebstore.google.com/detail/slack-video-meetings/baeblfkhlplnglebdnhjagnplekdphbo |
विवरण | A simple extension that allows you to schedule Slack Video Meetings and stream your desktop into Slack Video conferences. |
फ़ाइल का आकार | 108 KB |
स्थापना संख्या | 76 |
वर्तमान संस्करण | 0.2.8.14 |
अंतिम अपडेट | 2018-08-27 |
प्रकाशन तिथि | 2018-08-27 |
डेवलपर | https://slack.video |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slack Video Meetings", "description": "A simple extension that allows you to schedule Slack Video Meetings and stream your desktop into Slack Video conferences.", "version": "0.2.8.14", "minimum_chrome_version": "34", "icons": { "16": "jitsi-logo-16x16.png", "48": "jitsi-logo-48x48.png", "128": "jitsi-logo-128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "desktopCapture", "https:\/\/calendar.google.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/slack.video\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*", "https:\/\/outlook.live.com\/owa\/*" ], "js": [ "jquery.js", "RandomUtil.js", "RoomnameGenerator.js", "meet-calendar.js" ], "css": [ "\/css\/all.css" ], "all_frames": false, "run_at": "document_end" } ], "web_accessible_resources": [ "jitsi-logo-48x48.png", "jitsi-logo-white-48x48.png", "jitsi-logo-blue.svg", "jitsi-logo-grey.svg" ], "browser_action": { "default_title": "Create Jitsi Meetings", "default_popup": "popup.html" } } |