Accops Native Client
Send a message to a native application.
¿Qué es Accops Native Client?
Accops Native Client es una extensión de Chrome desarrollada por Accops, y su función principal es "Send a message to a native application.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Accops Native Client
Descarga archivos de extensión Accops Native Client en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
URL Oficial | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
Descripción | Send a message to a native application. |
Tamaño del Archivo | 24.53 KB |
Cantidad de Instalaciones | 4,268 |
Versión Actual | 3.1.0 |
Última Actualización | 2022-07-06 |
Fecha de Publicación | 2019-02-01 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | Accops |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.accops.com/privacy-policy |
URL de la Página de Ayuda | http://support.accops.com/support/home |
URL de la Página de Política de Privacidad | https://www.accops.com/privacy-policy |
Idiomas Soportados | 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" ] } |