ADCS EID Reader

Read Emirates ID at google chrome by communicating to console app Developed by ALAM

ADCS EID Readerคืออะไร?

ADCS EID Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.alampk.com และคุณลักษณะหลักของมันคือ "Read Emirates ID at google chrome by communicating to console app Developed by ALAM"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ADCS EID Reader

ดาวน์โหลดไฟล์ส่วนขยาย ADCS EID Reader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This Extension is developed to communicate with console application.
www.ica.gov.ae provide SDK for Desktop application with DLL to directly read from the card instead of sending request to server and fetch daata from there.
So in web application it was almost impossible.
Difinitly your clients must be limited and they must have dlls and a console app should be there, which on launching reads the card and if valid card is there it copies card data to clipboard.
This extension will initiate and run that console app in background
will wait untill cardreader responses back with valid data or error message
using this extension we will be able to read client clipboard and populate required information in specified objects(s) on the webpage
it do require to create some registry items
search at codingsips.com

Change log
28-dec-2022
manifest_version = 3 

14-Dec-2023
manifest_version = 3  and extension version 3.0.0                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ADCS EID Reader ADCS EID Reader
ID ipcncgpbppgjclagpdlodiiapmggolkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/adcs-eid-reader/ipcncgpbppgjclagpdlodiiapmggolkf
คำอธิบาย Read Emirates ID at google chrome by communicating to console app Developed by ALAM
ขนาดไฟล์ 95.78 KB
จำนวนการติดตั้ง 1,436
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2023-12-14
วันที่เผยแพร่ 2019-10-19
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://www.alampk.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://www.codingsips.com/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Read Emirates ID at google chrome by communicating to console app Developed by ALAM",
    "icons": {
        "16": "eid16.png",
        "48": "eid48.png",
        "128": "eid128.png"
    },
    "manifest_version": 3,
    "name": "ADCS EID Reader",
    "permissions": [
        "nativeMessaging"
    ],
    "version": "3.0.0"
}