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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://help.livehealth.solutions/en |
عنوان صفحة سياسة الخصوصية | 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 } } |