Accops Native Client
Send a message to a native application.
Was ist Accops Native Client?
Accops Native Client ist eine Chrome-Erweiterung, die von Accops entwickelt wurde, und ihr Hauptmerkmal ist "Send a message to a native application.".
Erweiterungsscreenshots
Accops Native Client-Erweiterungs-CRX-Datei herunterladen
Laden Sie Accops Native Client-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
Offizielle URL | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
Beschreibung | Send a message to a native application. |
Dateigröße | 24.53 KB |
Installationsanzahl | 4,268 |
Aktuelle Version | 3.1.0 |
Letztes Update | 2022-07-06 |
Veröffentlichungsdatum | 2019-02-01 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Accops |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.accops.com/privacy-policy |
Hilfeseite URL | http://support.accops.com/support/home |
URL der Datenschutzrichtlinien-Seite | https://www.accops.com/privacy-policy |
Unterstützte Sprachen | 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" ] } |