Native Messaging Example

Send a message to a native application.

Cos'è Native Messaging Example?

Native Messaging Example è un'estensione di Chrome sviluppata da Mandar, e la sua funzione principale è "Send a message to a native application.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Native Messaging Example

Scarica i file di estensione Native Messaging Example 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

                        Sample of Google Chrome Native Messaging 

Extensions and apps can exchange messages with native applications using an API that is similar to the other message passing APIs. Native applications that support this feature must register a native messaging host that knows how to communicate with the extension. Chrome starts the host in a separate process and communicates with it using standard input and standard output streams.                    

Informazioni di Base sull'Estensione

Nome Native Messaging Example Native Messaging Example
ID mefhabneoickhhbiglkmehhmemefkopf
URL Ufficiale https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf
Descrizione Send a message to a native application.
Dimensione del File 39.49 KB
Conteggio Installazioni 285
Versione Corrente 1.0
Ultimo Aggiornamento 2016-09-19
Data di Pubblicazione 2016-09-18
Valutazione 3.50/5 Totale 4 Valutazioni
Sviluppatore Mandar
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native Messaging Example",
    "short_name": "NativeClient",
    "version": "1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "33",
    "description": "Send a message to a native application.",
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "main.html"
    },
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "nativeMessaging"
    ]
}