National Identity Parser - LiveHealth
This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.
Что такое National Identity Parser - LiveHealth?
National Identity Parser - LiveHealth - это расширение Chrome, разработанное Livehealth, и его основная функция - "This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed.".
Снимки экрана расширения
Скачать файл CRX расширения National Identity Parser - LiveHealth
Скачайте файлы расширений National Identity Parser - LiveHealth в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | National Identity Parser - LiveHealth |
ID | ljiiiecpehgcnkpjlebelfpjbbcpnpfa |
Официальный URL | https://chromewebstore.google.com/detail/national-identity-parser/ljiiiecpehgcnkpjlebelfpjbbcpnpfa |
Описание | This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed. |
Размер файла | 52.71 KB |
Количество установок | 33 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2019-11-12 |
Дата публикации | 2019-11-11 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Livehealth |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://livehealth.in |
URL страницы помощи | https://help.livehealth.solutions/en |
URL страницы политики конфиденциальности | https://livehealth.in/privacy |
Поддерживаемые языки | 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 } } |