Native Messaging Example
Send a message to a native application.
Was ist Native Messaging Example?
Native Messaging Example ist eine Chrome-Erweiterung, die von Mandar entwickelt wurde, und ihr Hauptmerkmal ist "Send a message to a native application.".
Erweiterungsscreenshots
Native Messaging Example-Erweiterungs-CRX-Datei herunterladen
Laden Sie Native Messaging Example-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Native Messaging Example |
ID | mefhabneoickhhbiglkmehhmemefkopf |
Offizielle URL | https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf |
Beschreibung | Send a message to a native application. |
Dateigröße | 39.49 KB |
Installationsanzahl | 285 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-09-19 |
Veröffentlichungsdatum | 2016-09-18 |
Bewertung | 3.50/5 Insgesamt 4 Bewertungen |
Entwickler | Mandar |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |