Native Messaging Example
Send a message to a native application.
什麼是Native Messaging Example?
Native Messaging Example是由Mandar開發的Chrome擴展程式,該擴展的主要功能是“Send a message to a native application.”。
擴展截圖
下載Native Messaging Example擴展crx文件
下載Native Messaging Example擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Native Messaging Example |
ID | mefhabneoickhhbiglkmehhmemefkopf |
官方網址 | https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf |
簡介 | Send a message to a native application. |
檔案大小 | 39.49 KB |
安裝次數 | 285 |
目前版本 | 1.0 |
更新時間 | 2016-09-19 |
上架時間 | 2016-09-18 |
評分 | 3.50/5 共 4 次評分 |
開發者 | Mandar |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |