ID Card reader extension

Extension for communication with service for accessing ID card reader

ID Card reader extensionคืออะไร?

ID Card reader extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iPay และคุณลักษณะหลักของมันคือ "Extension for communication with service for accessing ID card reader"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ID Card reader extension

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

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

                        Main purpose of this extension is communication with service which accessing USB card reader on the local OS                    

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

ชื่อ ID Card reader extension ID Card reader extension
ID plokokmlmpnjobebmdophbogifcnlpec
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/id-card-reader-extension/plokokmlmpnjobebmdophbogifcnlpec
คำอธิบาย Extension for communication with service for accessing ID card reader
ขนาดไฟล์ 12.99 KB
จำนวนการติดตั้ง 12,489
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2021-06-09
วันที่เผยแพร่ 2020-07-22
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา iPay
อีเมล [email protected]
เว็บไซต์ส่วนขยาย http://www.ipay.rs
URL หน้าช่วยเหลือ https://www.ipay.rs/en/faq-2
URL หน้านโยบายความเป็นส่วนตัว https://www.ipay.rs/en/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ID Card reader extension",
    "description": "Extension for communication with service for accessing ID card reader",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/127.0.0.1\/*",
                "http:\/\/admin.vippay.rs\/*",
                "https:\/\/admin.vippay.rs\/*",
                "http:\/\/test_admin.vippay.rs\/*",
                "https:\/\/test_admin.vippay.rs\/*",
                "http:\/\/admin.iwallet.ipay.rs\/*",
                "https:\/\/admin.iwallet.ipay.rs\/*",
                "http:\/\/testadminiwallet.ipay.rs\/*",
                "https:\/\/testadminiwallet.ipay.rs\/*",
                "https:\/\/admin-balkanpay.ipay.rs\/*",
                "http:\/\/admin-balkanpay.ipay.rs\/*",
                "https:\/\/*.ipay.rs\/*",
                "http:\/\/*.ipay.rs\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "nativeMessaging"
    ]
}