ADCS EID Reader

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

ADCS EID Reader란 무엇입니까?

ADCS EID Reader은(는) https://www.alampk.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read Emirates ID at google chrome by communicating to console app Developed by ALAM"입니다.

확장 프로그램 스크린샷

screenshot

ADCS EID Reader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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