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 |
| 官方網址 | 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"
]
} | |