C3 Example Extension

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

What is C3 Example Extension?

C3 Example Extension is a Chrome extension developed by c3.ericsson, and its main feature is "Enables screen sharing for Example application. This extension has no user interface.".

Extension Screenshots

screenshot

Download C3 Example Extension Extension CRX File

Download C3 Example Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Enables screen sharing for c3 applications by using the ChromeExtensionId.                    

Extension Basic Information

Name C3 Example Extension C3 Example Extension
ID epajpkbdigdpepgncdpmilaoamkjgoah
Official URL https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah
Description Enables screen sharing for Example application. This extension has no user interface.
File Size 8.01 KB
Installation Count 22
Current Version 2.1.0
Last Updated 2017-01-17
Publish Date 2017-01-17
Developer c3.ericsson
Payment Type free
Supported Languages 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"
    ]
}