Accops Native Client
Send a message to a native application.
Accops Native Clientとは何ですか?
Accops Native ClientはAccopsによって開発されたChromeの拡張機能で、その主な機能は「Send a message to a native application.」です。
拡張機能のスクリーンショット
Accops Native Client拡張機能のCRXファイルをダウンロード
Accops Native Client拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Webpage and native applications can exchange messages through Accops Native Client extension 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.
拡張機能の基本情報
名前 | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
公式URL | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
説明 | Send a message to a native application. |
ファイルサイズ | 24.53 KB |
インストール数 | 4,268 |
現在のバージョン | 3.1.0 |
最終更新日 | 2022-07-06 |
公開日 | 2019-02-01 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | Accops |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.accops.com/privacy-policy |
ヘルプページのURL | http://support.accops.com/support/home |
プライバシーポリシーページのURL | https://www.accops.com/privacy-policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Accops Native Client", "short_name": "Accops NativeClient", "version": "3.1.0", "manifest_version": 2, "minimum_chrome_version": "33", "description": "Send a message to a native application.", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html", "https:\/\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html" ], "js": [ "content_script.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html", "manifest.json" ], "permissions": [ "nativeMessaging" ] } |