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은(는) Livehealth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is for LiveHealth for Diagnostics, Cloud Solution, where National Identity Number can be parsed."입니다.
확장 프로그램 스크린샷
National Identity Parser - LiveHealth 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |