Native Messaging Example

Send a message to a native application.

Co to jest Native Messaging Example?

Native Messaging Example to rozszerzenie Chrome opracowane przez Mandar, a jego główną funkcją jest „Send a message to a native application.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Native Messaging Example

Pobierz pliki rozszerzeń Native Messaging Example w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Native Messaging Example Native Messaging Example
ID mefhabneoickhhbiglkmehhmemefkopf
Oficjalny URL https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf
Opis Send a message to a native application.
Rozmiar pliku 39.49 KB
Liczba instalacji 285
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-09-19
Data Publikacji 2016-09-18
Ocena 3.50/5 Łącznie 4 Oceny
Deweloper Mandar
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}