IceWarp Screen Sharing

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

Was ist IceWarp Screen Sharing?

IceWarp Screen Sharing ist eine Chrome-Erweiterung, die von https://icewarp.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to share your screen to other users in the IceWarp WebClient.".

Erweiterungsscreenshots

screenshot

IceWarp Screen Sharing-Erweiterungs-CRX-Datei herunterladen

Laden Sie IceWarp Screen Sharing-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name IceWarp Screen Sharing IceWarp Screen Sharing
ID gpeicpibkllbejpnminnmecpjedmhhdg
Offizielle URL https://chromewebstore.google.com/detail/icewarp-screen-sharing/gpeicpibkllbejpnminnmecpjedmhhdg
Beschreibung This extension allows you to share your screen to other users in the IceWarp WebClient.
Dateigröße 9.67 KB
Installationsanzahl 537
Aktuelle Version 1.0.5
Letztes Update 2014-10-14
Veröffentlichungsdatum 2014-10-14
Bewertung 4.94/5 Insgesamt 32 Bewertungen
Entwickler https://icewarp.com
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}