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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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