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"
]
} | |