ID Card reader extension
Extension for communication with service for accessing ID card reader
Was ist ID Card reader extension?
ID Card reader extension ist eine Chrome-Erweiterung, die von iPay entwickelt wurde, und ihr Hauptmerkmal ist "Extension for communication with service for accessing ID card reader".
Erweiterungsscreenshots
ID Card reader extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie ID Card reader extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Main purpose of this extension is communication with service which accessing USB card reader on the local OS Grundlegende Informationen zur Erweiterung
| Name | |
| ID | plokokmlmpnjobebmdophbogifcnlpec |
| Offizielle URL | https://chrome.google.com/webstore/detail/id-card-reader-extension/plokokmlmpnjobebmdophbogifcnlpec |
| Beschreibung | Extension for communication with service for accessing ID card reader |
| Dateigröße | 12.99 KB |
| Installationsanzahl | 12,489 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2021-06-09 |
| Veröffentlichungsdatum | 2020-07-22 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | iPay |
| [email protected] | |
| Erweiterungswebsite | http://www.ipay.rs |
| Hilfeseite URL | https://www.ipay.rs/en/faq-2 |
| URL der Datenschutzrichtlinien-Seite | https://www.ipay.rs/en/privacy-policy |
| Unterstützte Sprachen | 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"
]
} | |