智能卡读卡器和ChromeApp

时间:2015-09-23 10:30:12

标签: javascript html5 google-chrome-app smartcard-reader winusb

我想制作一款可以访问USB智能卡读卡器(HID Global OmniKey 3121)的Chrome应用程序。

有人曾经成功做过吗?

不幸的是,我无法使用usb.getDevices看到它。

script.js (由 index.html 调用,它本身由 background.js onLaunched调用):

//dom elements
var findBtn = document.querySelector( "button#find-btn" )
var deviceInfo = document.querySelector( "p#device-info" )

//{click}
findBtn.addEventListener( "click", findDevice )

/*
 * Try to find HID OmniKey 3x21
 */
function findDevice ()
{
  var options = {
    filters: [
      {
        vendorId: 1899,  //OmniKey AG
        productId: 12321  //CardMan 3121 but PID=0x3021
      }
    ]
  }

  chrome.usb.getDevices( options, function ( devices )
  {
    console.log( devices )
    deviceInfo.innerHTML = JSON.stringify( devices[0] )
  } )

}

设备在清单中声明,并在“扩展程序”页面中由Chrome识别。

提前感谢您的帮助。

修改

这是我的 manifest.json

{
  "manifest_version": 2,
  "name": "Card Reader",
  "description": "Smartcard reader",
  "version": "0.0.2",
  "minimum_chrome_version": "43",

  "app": {
    "background": {
      "scripts": [ "js/background.js" ]
    }
  },

  "permissions": [
    "usb",

    {
      "usbDevices": [
        {
          "vendorId": 1057,
          "productId": 1633
        },
        {
          "vendorId": 1133,
          "productId": 49271
        },
        {
          "vendorId": 1899,
          "productId": 12321
        }
      ]
    }
  ]
}

3个允许的设备是:

  1. 诺基亚Lumia 920
  2. 戴尔光学鼠标
  3. OmniKey智能卡读卡器3121
  4. usb.getDevicesusb.findDevices仅识别鼠标。 usb.getUserSelectedDevices仅列出了鼠标。

1 个答案:

答案 0 :(得分:5)

使用HID Global的本机驱动程序时,Chrome无法识别设备。

解决方法是使用备用USB驱动程序,例如来自zadig.akeo.ie的Zadig安装程序提供的驱动程序:

  • 了WinUSB
  • 的libusb-win32的
  • libusbK

我在HID Device上开了一个案例,但是他们的技术支持还没有解决问题(他们不知道什么是Chrome平台...)并将我重定向到Google。

我在谷歌开了个案,但是他们回答我我应该在StackOverflow上发帖!他们似乎不介意他们的平台无法识别标准USB智能卡设备,尽管在Windows设备管理器中可以看到......

<强>更新

HID技术支持表示他们的驱动程序将在2016年之前支持该平台。 Goolge的支持仍然是...... inapt。

Windows 7-10更新

在Windows 7和10上,我不需要安装通用驱动程序。相反,我只需在 Windows设备管理器中编辑智能卡读卡器,然后选择以前的驱动程序。它将恢复为Windows Generic USB CCID驱动程序,该驱动程序可与我的传统PC / SC Winscard应用程序和我的Chrome应用程序一起使用。