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 |
官方URL | 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" ] } |