IceWarp Screen Sharing

This extension allows you to share your screen to other users in the IceWarp WebClient.

Что такое IceWarp Screen Sharing?

IceWarp Screen Sharing - это расширение Chrome, разработанное https://icewarp.com, и его основная функция - "This extension allows you to share your screen to other users in the IceWarp WebClient.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения IceWarp Screen Sharing

Скачайте файлы расширений 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.                    

Основная информация о расширении

Название IceWarp Screen Sharing IceWarp Screen Sharing
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"
    ]
}