I want to develop a simple Chrome-extension that will handle the communication with my smartcard. After installing a driver (as described at Smartcard Reader and ChromeApp ) I can get some information of my device, like this:
device #0: {
"device":0,
"manufacturerName":"OMNIKEY AG",
"productId":12322,
"productName":"Smart Card Reader USB",
"serialNumber":"",
"vendorId":1899,
"version":516
}
How can I continue? I need now to get ATR, and send/get data, and I have no idea how to do it... (we did it using some program languages, like Java, Python, C++, but I don't know where is the relevant API for JS/chrome)