IceWarp Screen Sharing
This extension allows you to share your screen to other users in the IceWarp WebClient.
什么是IceWarp Screen Sharing?
IceWarp Screen Sharing是由https://icewarp.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to share your screen to other users in the IceWarp WebClient.”。
扩展截图
下载IceWarp Screen Sharing扩展crx文件
下载IceWarp Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
IceWarp WebClient is an all-in-one hub for your messaging communications, whether email, instant messaging, voice, online conferencing, document management, and more. Accessible from your desktop or on-the-go, you are truly able to access everything you need during your workday while never leaving the IceWarp interface. 扩展基本信息
| 名称 | |
| ID | gpeicpibkllbejpnminnmecpjedmhhdg |
| 官方URL | https://chromewebstore.google.com/detail/icewarp-screen-sharing/gpeicpibkllbejpnminnmecpjedmhhdg |
| 简介 | This extension allows you to share your screen to other users in the IceWarp WebClient. |
| 文件大小 | 9.67 KB |
| 安装次数 | 537 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2014-10-14 |
| 上架时间 | 2014-10-14 |
| 评分 | 4.94/5 共32次评分 |
| 开发者 | https://icewarp.com |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "IceWarp Screen Sharing",
"author": "Martin Ekblom",
"version": "1.0.5",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "This extension allows you to share your screen to other users in the IceWarp WebClient.",
"homepage_url": "http:\/\/www.icewarp.com\/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"matches": [
"*:\/\/*.icewarp.com\/*"
]
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.icewarp.com\/*"
]
},
"icons": {
"16": "icon16.png",
"48": "icon.png",
"128": "icon128.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png",
"icon16.png",
"icon128.png"
]
} | |