C3 Example Extension

Enables screen sharing for Example application. This extension has no user interface.

Was ist C3 Example Extension?

C3 Example Extension ist eine Chrome-Erweiterung, die von c3.ericsson entwickelt wurde, und ihr Hauptmerkmal ist "Enables screen sharing for Example application. This extension has no user interface.".

Erweiterungsscreenshots

screenshot

C3 Example Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie C3 Example Extension-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

                        Enables screen sharing for c3 applications by using the ChromeExtensionId.                    

Grundlegende Informationen zur Erweiterung

Name C3 Example Extension C3 Example Extension
ID epajpkbdigdpepgncdpmilaoamkjgoah
Offizielle URL https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah
Beschreibung Enables screen sharing for Example application. This extension has no user interface.
Dateigröße 8.01 KB
Installationsanzahl 22
Aktuelle Version 2.1.0
Letztes Update 2017-01-17
Veröffentlichungsdatum 2017-01-17
Entwickler c3.ericsson
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "C3 Example Extension",
    "description": "Enables screen sharing for Example application. This extension has no user interface.",
    "version": "2.1.0",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "activeTab",
        "tabCapture",
        "desktopCapture",
        "notifications"
    ]
}