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