National Identity Parser - LiveHealth
This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.
Cos'è National Identity Parser - LiveHealth?
National Identity Parser - LiveHealth è un'estensione di Chrome sviluppata da Livehealth, e la sua funzione principale è "This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione National Identity Parser - LiveHealth
Scarica i file di estensione National Identity Parser - LiveHealth 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
This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed, and be used to translate data from the ID verify or get details about the individual and auto-fill while registration. *This cannot be used to fetch un-authorised personal information without patient consent. ** This can only be used with LiveHealth products
Informazioni di Base sull'Estensione
Nome | National Identity Parser - LiveHealth |
ID | ljiiiecpehgcnkpjlebelfpjbbcpnpfa |
URL Ufficiale | https://chromewebstore.google.com/detail/national-identity-parser/ljiiiecpehgcnkpjlebelfpjbbcpnpfa |
Descrizione | This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed. |
Dimensione del File | 52.71 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2019-11-12 |
Data di Pubblicazione | 2019-11-11 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Livehealth |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://livehealth.in |
URL della Pagina di Aiuto | https://help.livehealth.solutions/en |
URL della Pagina della Politica sulla Privacy | https://livehealth.in/privacy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "National Identity Parser - LiveHealth", "version": "1.0.1", "description": "This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.", "icons": { "16": "images\/16px-livehealth-app-icon-green.png", "48": "images\/48px-livehealth-app-icon-green.png", "128": "images\/128px-livehealth-app-icon-green.png" }, "content_scripts": [ { "matches": [ "http:\/\/localhost:8000\/*", "https:\/\/*.livehealth.solutions\/*", "https:\/\/livehealth.solutions\/*" ], "js": [ "content.js", "moment.min.js" ] } ], "permissions": [ "tabs", "storage" ], "browser_action": { "default_icon": { "16": "images\/lh16.png", "24": "images\/lh24.png", "32": "images\/lh32.png" }, "default_title": "National Identity Parser - LiveHealth", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |