C3 Example Extension

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

C3 Example Extensionคืออะไร?

C3 Example Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย c3.ericsson และคุณลักษณะหลักของมันคือ "Enables screen sharing for Example application. This extension has no user interface."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย C3 Example Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}