Screen Capturing for ProVideomeeting
Extension to enable Screen Sharing for ProVideomeeting application
什么是Screen Capturing for ProVideomeeting?
Screen Capturing for ProVideomeeting是由https://provideomeeting.com开发的Chrome扩展程序,该扩展的主要功能是“Extension to enable Screen Sharing for ProVideomeeting application”。
扩展截图
下载Screen Capturing for ProVideomeeting扩展crx文件
下载Screen Capturing for ProVideomeeting扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This WebRTC based extension allows you to share your desktop and applications in full HD in a live virtual meeting with your attendees.
What is ProVideomeeting?
- New level of online meetings.
- Show presentations, video files or share your screen. Communicate in a common chat room or via private messages.
- Modern HTML5 and WebRTC technologies, providing for high operation speed.
- More than 75 functions with a simple intuitive interface.
Discover new generation platform for video conferences 扩展基本信息
| 名称 | |
| ID | jefofalaofaikkkpcekdgjchamdbkhgh |
| 官方URL | https://chromewebstore.google.com/detail/screen-capturing-for-prov/jefofalaofaikkkpcekdgjchamdbkhgh |
| 简介 | Extension to enable Screen Sharing for ProVideomeeting application |
| 文件大小 | 5.69 KB |
| 安装次数 | 30 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2017-05-23 |
| 上架时间 | 2017-05-23 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://provideomeeting.com |
| 付费类型 | free |
| 扩展官网 | https://provideomeeting.com/ |
| 隐私政策页面URL | https://provideomeeting.com/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Screen Capturing for ProVideomeeting",
"author": "NoviNexus Inc.",
"version": "1.0.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Extension to enable Screen Sharing for ProVideomeeting application",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_start",
"matches": [
"*:\/\/provideomeeting.com\/*",
"*:\/\/*.provideomeeting.com\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |