Chrome Platform Bridge

Chrome Platform Bridge

Apa itu Chrome Platform Bridge?

Chrome Platform Bridge adalah ekstensi Chrome yang dikembangkan oleh Morten Frederiksen, dan fitur utamanya adalah "Chrome Platform Bridge".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Chrome Platform Bridge

Unduh file ekstensi Chrome Platform Bridge dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
URL Resmi https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Deskripsi Chrome Platform Bridge
Ukuran File 7.7 KB
Jumlah Instalasi 138
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2018-08-01
Tanggal Publikasi 2018-08-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Morten Frederiksen
Tipe Pembayaran free
Situs Ekstensi https://github.com/frederiksen/chrome-platform-bridge
Bahasa yang Didukung 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"
    ]
}