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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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