C3 Example Extension

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

C3 Example Extensionとは何ですか?

C3 Example Extensionはc3.ericssonによって開発されたChromeの拡張機能で、その主な機能は「Enables screen sharing for Example application. This extension has no user interface.」です。

拡張機能のスクリーンショット

screenshot

C3 Example Extension拡張機能のCRXファイルをダウンロード

C3 Example Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Enables screen sharing for c3 applications by using the ChromeExtensionId.                    

拡張機能の基本情報

名前 C3 Example Extension C3 Example Extension
ID epajpkbdigdpepgncdpmilaoamkjgoah
公式URL https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah
説明 Enables screen sharing for Example application. This extension has no user interface.
ファイルサイズ 8.01 KB
インストール数 22
現在のバージョン 2.1.0
最終更新日 2017-01-17
公開日 2017-01-17
開発者 c3.ericsson
支払い方法 free
対応言語 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"
    ]
}