C3 Example Extension

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

Wat is C3 Example Extension?

C3 Example Extension is een Chrome-extensie ontwikkeld door c3.ericsson, en de belangrijkste functie is "Enables screen sharing for Example application. This extension has no user interface.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie C3 Example Extension

Download C3 Example Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Enables screen sharing for c3 applications by using the ChromeExtensionId.                    

Basisinformatie over de Extensie

Naam C3 Example Extension C3 Example Extension
ID epajpkbdigdpepgncdpmilaoamkjgoah
Officiële URL https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah
Beschrijving Enables screen sharing for Example application. This extension has no user interface.
Bestandsgrootte 8.01 KB
Aantal Installaties 22
Huidige Versie 2.1.0
Laatst Bijgewerkt 2017-01-17
Publicatiedatum 2017-01-17
Ontwikkelaar c3.ericsson
Betalingswijze free
Ondersteunde Talen 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"
    ]
}