Native Messaging Example

Send a message to a native application.

O que é Native Messaging Example?

Native Messaging Example é uma extensão do Chrome desenvolvida por Mandar, e sua principal característica é "Send a message to a native application.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Native Messaging Example

Baixe arquivos de extensão Native Messaging Example no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Native Messaging Example Native Messaging Example
ID mefhabneoickhhbiglkmehhmemefkopf
URL Oficial https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf
Descrição Send a message to a native application.
Tamanho do Arquivo 39.49 KB
Contagem de Instalações 285
Versão Atual 1.0
Última Atualização 2016-09-19
Data de Publicação 2016-09-18
Classificação 3.50/5 Total de 4 Avaliações
Desenvolvedor Mandar
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}