C3 Example Extension

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

Qu'est-ce que C3 Example Extension ?

C3 Example Extension est une extension Chrome développée par c3.ericsson, et sa fonction principale est "Enables screen sharing for Example application. This extension has no user interface.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension C3 Example Extension

Téléchargez les fichiers d'extension C3 Example Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Enables screen sharing for c3 applications by using the ChromeExtensionId.                    

Informations de Base sur l'Extension

Nom C3 Example Extension C3 Example Extension
ID epajpkbdigdpepgncdpmilaoamkjgoah
URL Officiel https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah
Description Enables screen sharing for Example application. This extension has no user interface.
Taille du Fichier 8.01 KB
Nombre d'Installations 22
Version Actuelle 2.1.0
Dernière Mise à Jour 2017-01-17
Date de Publication 2017-01-17
Développeur c3.ericsson
Type de Paiement free
Langues Prises en Charge 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"
    ]
}