Chrome Platform Bridge

Chrome Platform Bridge

什麼是Chrome Platform Bridge?

Chrome Platform Bridge是由Morten Frederiksen開發的Chrome擴展程式,該擴展的主要功能是“Chrome Platform Bridge”。

擴展截圖

screenshot

下載Chrome Platform Bridge擴展crx文件

下載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
官方網址 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"
    ]
}