Native Messaging Example

Send a message to a native application.

Apa itu Native Messaging Example?

Native Messaging Example adalah ekstensi Chrome yang dikembangkan oleh Mandar, dan fitur utamanya adalah "Send a message to a native application.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Native Messaging Example

Unduh file ekstensi Native Messaging Example dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Native Messaging Example Native Messaging Example
ID mefhabneoickhhbiglkmehhmemefkopf
URL Resmi https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf
Deskripsi Send a message to a native application.
Ukuran File 39.49 KB
Jumlah Instalasi 285
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-09-19
Tanggal Publikasi 2016-09-18
Penilaian 3.50/5 Total 4 Penilaian
Pengembang Mandar
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}