C3 Example Extension

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

C3 Example Extension là gì?

C3 Example Extension là một tiện ích mở rộng Chrome được phát triển bởi c3.ericsson, và tính năng chính của nó là "Enables screen sharing for Example application. This extension has no user interface.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng C3 Example Extension

Tải xuống các tệp mở rộng C3 Example Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Enables screen sharing for c3 applications by using the ChromeExtensionId.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên C3 Example Extension C3 Example Extension
ID epajpkbdigdpepgncdpmilaoamkjgoah
URL Chính Thức https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah
Mô tả Enables screen sharing for Example application. This extension has no user interface.
Kích Thước Tệp 8.01 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2017-01-17
Ngày Phát Hành 2017-01-17
Nhà Phát Triển c3.ericsson
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}