Chrome Platform Bridge

Chrome Platform Bridge

Cos'è Chrome Platform Bridge?

Chrome Platform Bridge è un'estensione di Chrome sviluppata da Morten Frederiksen, e la sua funzione principale è "Chrome Platform Bridge".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chrome Platform Bridge

Scarica i file di estensione Chrome Platform Bridge in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Chrome Platform Bridge Chrome Platform Bridge
ID cbfkjbjjmhgmlalmjpmfjpeekkkjneia
URL Ufficiale https://chromewebstore.google.com/detail/chrome-platform-bridge/cbfkjbjjmhgmlalmjpmfjpeekkkjneia
Descrizione Chrome Platform Bridge
Dimensione del File 7.7 KB
Conteggio Installazioni 138
Versione Corrente 1.0.0
Ultimo Aggiornamento 2018-08-01
Data di Pubblicazione 2018-08-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Morten Frederiksen
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/frederiksen/chrome-platform-bridge
Lingue Supportate 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"
    ]
}