Native Messaging Example

Send a message to a native application.

Qu'est-ce que Native Messaging Example ?

Native Messaging Example est une extension Chrome développée par Mandar, et sa fonction principale est "Send a message to a native application.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Native Messaging Example

Téléchargez les fichiers d'extension Native Messaging Example au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Native Messaging Example Native Messaging Example
ID mefhabneoickhhbiglkmehhmemefkopf
URL Officiel https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf
Description Send a message to a native application.
Taille du Fichier 39.49 KB
Nombre d'Installations 285
Version Actuelle 1.0
Dernière Mise à Jour 2016-09-19
Date de Publication 2016-09-18
Évaluation 3.50/5 Total 4 Évaluations
Développeur Mandar
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}