Accops Native Client
Send a message to a native application.
Qu'est-ce que Accops Native Client ?
Accops Native Client est une extension Chrome développée par Accops, et sa fonction principale est "Send a message to a native application.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Accops Native Client
Téléchargez les fichiers d'extension Accops Native Client au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
URL Officiel | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
Description | Send a message to a native application. |
Taille du Fichier | 24.53 KB |
Nombre d'Installations | 4,268 |
Version Actuelle | 3.1.0 |
Dernière Mise à Jour | 2022-07-06 |
Date de Publication | 2019-02-01 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Accops |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.accops.com/privacy-policy |
URL de la Page d'Aide | http://support.accops.com/support/home |
URL de la Page de Politique de Confidentialité | https://www.accops.com/privacy-policy |
Langues Prises en Charge | 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" ] } |