Jitsi Meetings (meet.uvasc.net)
A simple extension that allows you to schedule Jitsi Meetings and stream your desktop into Jitsi conferences on meet.uvasc.net
What is Jitsi Meetings (meet.uvasc.net)?
Jitsi Meetings (meet.uvasc.net) is a Chrome extension developed by https://meet.uvasc.net, and its main feature is "A simple extension that allows you to schedule Jitsi Meetings and stream your desktop into Jitsi conferences on meet.uvasc.net".
Extension Screenshots
Download Jitsi Meetings (meet.uvasc.net) Extension CRX File
Download Jitsi Meetings (meet.uvasc.net) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Jitsi Meetings (meet.uvasc.net)
Extension Basic Information
Name | Jitsi Meetings (meet.uvasc.net) |
ID | kpdfmmfeoffigfodpohjpldpikdfgbhe |
Official URL | https://chromewebstore.google.com/detail/jitsi-meetings-meetuvascn/kpdfmmfeoffigfodpohjpldpikdfgbhe |
Description | A simple extension that allows you to schedule Jitsi Meetings and stream your desktop into Jitsi conferences on meet.uvasc.net |
File Size | 143 KB |
Installation Count | 4,455 |
Current Version | 0.2.8 |
Last Updated | 2019-01-07 |
Publish Date | 2019-01-07 |
Rating | 4.75/5 Total 4 Ratings |
Developer | https://meet.uvasc.net |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jitsi Meetings (meet.uvasc.net)", "description": "A simple extension that allows you to schedule Jitsi Meetings and stream your desktop into Jitsi conferences on meet.uvasc.net", "version": "0.2.8", "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": [ "*:\/\/meet.uvasc.net\/*" ] }, "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" } } |