Accops Native Client
Send a message to a native application.
Cos'è Accops Native Client?
Accops Native Client è un'estensione di Chrome sviluppata da Accops, e la sua funzione principale è "Send a message to a native application.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Accops Native Client
Scarica i file di estensione Accops Native Client in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
URL Ufficiale | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
Descrizione | Send a message to a native application. |
Dimensione del File | 24.53 KB |
Conteggio Installazioni | 4,268 |
Versione Corrente | 3.1.0 |
Ultimo Aggiornamento | 2022-07-06 |
Data di Pubblicazione | 2019-02-01 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Accops |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.accops.com/privacy-policy |
URL della Pagina di Aiuto | http://support.accops.com/support/home |
URL della Pagina della Politica sulla Privacy | https://www.accops.com/privacy-policy |
Lingue Supportate | 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" ] } |