athenaNet Device Manager (ADM)
Integrate devices with athenaNet and monitor the health of these devices
Τι είναι το athenaNet Device Manager (ADM);
Το athenaNet Device Manager (ADM) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον athenahealth, Inc., και η κύρια λειτουργία του είναι "Integrate devices with athenaNet and monitor the health of these devices".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης athenaNet Device Manager (ADM)
Λήψη αρχείων επέκτασης athenaNet Device Manager (ADM) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Integrate your devices with athenaNet through the athenaNet Device Manager extension. With ADM extension for Chrome, you can seamlessly integrate your devices such as scanners, payment devices, DYMO label printers and a range of clinical devices including Welch Allyn and Midmark with athenahealth
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | fmjgdklbdgkdjfhgeickkiaplegebhek |
Επίσημο URL | https://chrome.google.com/webstore/detail/athenanet-device-manager/fmjgdklbdgkdjfhgeickkiaplegebhek |
Περιγραφή | Integrate devices with athenaNet and monitor the health of these devices |
Μέγεθος Αρχείου | 28.47 KB |
Αριθμός Εγκαταστάσεων | 10,860 |
Τρέχουσα Έκδοση | 1.9 |
Τελευταία Ενημέρωση | 2021-10-21 |
Ημερομηνία Δημοσίευσης | 2021-02-21 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | athenahealth, Inc. |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "athenaNet Device Manager (ADM)", "version": "1.9", "manifest_version": 2, "description": "Integrate devices with athenaNet and monitor the health of these devices", "icons": { "128": "athena.ico" }, "permissions": [ "nativeMessaging", "tabs", "management" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/default.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.athenahealth.com\/*", "https:\/\/*.athenahealthpayment.com\/*" ], "js": [ "main.js" ], "all_frames": true, "run_at": "document_start" } ], "externally_connectable": { "matches": [ "https:\/\/*.athenahealth.com\/*", "https:\/\/*.athenahealthpayment.com\/*" ] } } |