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 } } |