Accops Native Client
Send a message to a native application.
Vad är Accops Native Client?
Accops Native Client är en Chrome-tillägg utvecklad av Accops, och dess huvudfunktion är "Send a message to a native application.".
Tilläggsskärmbilder
Ladda ner Accops Native Client-förlängningens CRX-fil
Ladda ner Accops Native Client-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
Officiell webbadress | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
Beskrivning | Send a message to a native application. |
Filstorlek | 24.53 KB |
Antal Installationer | 4,268 |
Aktuell Version | 3.1.0 |
Senast Uppdaterad | 2022-07-06 |
Publiceringsdatum | 2019-02-01 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | Accops |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.accops.com/privacy-policy |
Hjälpsida URL | http://support.accops.com/support/home |
URL till Sekretesspolicy Sidan | https://www.accops.com/privacy-policy |
Stödda Språk | 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" ] } |