Chrome Platform Bridge

Chrome Platform Bridge

ما هو Chrome Platform Bridge؟

Chrome Platform Bridge هو إضافة Chrome تم تطويرها بواسطة Morten Frederiksen، والميزة الرئيسية لها هي "Chrome Platform Bridge".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Chrome Platform Bridge

قم بتنزيل ملفات الامتداد Chrome Platform Bridge بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        What is this project about? This project demonstrates a bridge from JavaScript to the platform hosting the browser.

What can it be used for? The bridging functionallity can be used to mix a typically web-app and local resources. The resources could be: the file system, a hardware device or some legacy software.

Project site: https://github.com/frederiksen/chrome-platform-bridge                    

معلومات أساسية عن التمديد

الاسم Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
عنوان URL الرسمي https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
الوصف Chrome Platform Bridge
حجم الملف 7.7 KB
عدد التثبيتات 138
النسخة الحالية 1.0.0
آخر تحديث 2018-08-01
تاريخ النشر 2018-08-01
تقييم 5.00/5 مجموع تقييمات 1
المطور Morten Frederiksen
نوع الدفع free
موقع الإضافة https://github.com/frederiksen/chrome-platform-bridge
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Platform Bridge",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.0.0",
    "description": "Chrome Platform Bridge",
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "nativeMessaging"
    ]
}