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