In enterprise deployments it may be desirable to grant an application access to a set of USB devices by policy. To accomplish this this feature request proposes adding a Group Policy option mapping a USB vendor and product ID pair to a set of origins. When this policy is in place for any matching device Chrome will behave as if the user granted permission for these origins to connect to the device through the normal chooser UI that is presented by the navigator.usb.requestDevice() method.
Example policy value:
[
{
'vendorId': 0xABCD,
'productId': 0x1234, // optional, matches all products if missing
'urls': [
'https://[*.]google.com',
]
}
]
Comment 1 by isandrk@chromium.org
, Jun 20 2018