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 |
Eメール | [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" ] } |