Accops Native Client
Send a message to a native application.
Τι είναι το Accops Native Client;
Το Accops Native Client είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Accops, και η κύρια λειτουργία του είναι "Send a message to a native application.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Accops Native Client
Λήψη αρχείων επέκτασης Accops Native Client σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Accops Native Client |
ID | kgnnlaamhmjmhkeegiaimkfojcagjcml |
Επίσημο URL | https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml |
Περιγραφή | Send a message to a native application. |
Μέγεθος Αρχείου | 24.53 KB |
Αριθμός Εγκαταστάσεων | 4,268 |
Τρέχουσα Έκδοση | 3.1.0 |
Τελευταία Ενημέρωση | 2022-07-06 |
Ημερομηνία Δημοσίευσης | 2019-02-01 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Accops |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.accops.com/privacy-policy |
Διεύθυνση URL της Σελίδας Βοήθειας | http://support.accops.com/support/home |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.accops.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | 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" ] } |