Human Interface Devices
hidInstall Warning
"Access HID devices."
Technical Context
Provides access to the chrome.hid API for communicating with USB Human Interface Devices like gamepads, specialized keyboards, or custom hardware. This bypasses standard HID drivers.
What This Means For You
The extension can communicate directly with special USB devices like game controllers or custom hardware. This is used for hardware configuration tools.
Related APIs
This permission enables access to these Chrome APIs:
chrome.hidCommon Use Cases
- ✓Game controller config
- ✓Hardware tools
- ✓Accessibility devices
How to Declare in manifest.json
Add the "hid" permission to your extension manifest:
{
"manifest_version": 3,
"name": "My Extension",
"permissions": [
"hid"
]
}What Users Will See
When users install your extension, Chrome will display this warning:
This extension can:
"Access HID devices."
Related Permissions
Serial Ports
serialThe extension can communicate with devices connected through serial ports, like Arduino boards or scientific instruments. This is essential for hardware development tools.
Bluetooth
bluetoothThe extension can find and connect to Bluetooth devices near you, like headphones or fitness trackers. This is used for device management or data sync.
Clipboard Write
clipboardWriteThe extension can put content onto your clipboard, making it available when you paste. This is used for copy buttons and text formatting tools.
Printer Provider
printerProviderThe extension can add new printing options and handle documents you send to print. This is used for cloud printing or custom print services.
Printing
printingThe extension can see your available printers and send documents to print. This is useful for print management or automated printing tasks.