National Identity Parser - LiveHealth
This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.
¿Qué es National Identity Parser - LiveHealth?
National Identity Parser - LiveHealth es una extensión de Chrome desarrollada por Livehealth, y su función principal es "This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión National Identity Parser - LiveHealth
Descarga archivos de extensión National Identity Parser - LiveHealth en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | National Identity Parser - LiveHealth |
ID | ljiiiecpehgcnkpjlebelfpjbbcpnpfa |
URL Oficial | https://chromewebstore.google.com/detail/national-identity-parser/ljiiiecpehgcnkpjlebelfpjbbcpnpfa |
Descripción | This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed. |
Tamaño del Archivo | 52.71 KB |
Cantidad de Instalaciones | 33 |
Versión Actual | 1.0.1 |
Última Actualización | 2019-11-12 |
Fecha de Publicación | 2019-11-11 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Livehealth |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://livehealth.in |
URL de la Página de Ayuda | https://help.livehealth.solutions/en |
URL de la Página de Política de Privacidad | https://livehealth.in/privacy |
Idiomas Soportados | 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 } } |