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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}