IceWarp Screen Sharing

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

Co to jest IceWarp Screen Sharing?

IceWarp Screen Sharing to rozszerzenie Chrome opracowane przez https://icewarp.com, a jego główną funkcją jest „This extension allows you to share your screen to other users in the IceWarp WebClient.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia IceWarp Screen Sharing

Pobierz pliki rozszerzeń IceWarp Screen Sharing w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa IceWarp Screen Sharing IceWarp Screen Sharing
ID gpeicpibkllbejpnminnmecpjedmhhdg
Oficjalny URL https://chromewebstore.google.com/detail/icewarp-screen-sharing/gpeicpibkllbejpnminnmecpjedmhhdg
Opis This extension allows you to share your screen to other users in the IceWarp WebClient.
Rozmiar pliku 9.67 KB
Liczba instalacji 537
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2014-10-14
Data Publikacji 2014-10-14
Ocena 4.94/5 Łącznie 32 Oceny
Deweloper https://icewarp.com
Typ Płatności free
Obsługiwane Języki 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"
    ]
}