Document Scan
documentScanTechnical Context
Provides access to the chrome.documentScan API for discovering and interacting with document scanners. This is a ChromeOS-specific permission for scanner integration.
What This Means For You
On Chromebooks, the extension can use connected document scanners to digitize paper documents. This is only available on Chrome OS.
Related APIs
This permission enables access to these Chrome APIs:
chrome.documentScanCommon Use Cases
- ✓Document digitization
- ✓OCR tools
- ✓Paperless workflows
How to Declare in manifest.json
Add the "documentScan" permission to your extension manifest:
{
"manifest_version": 3,
"name": "My Extension",
"permissions": [
"documentScan"
]
}Related Permissions
Human Interface Devices
hidThe extension can communicate directly with special USB devices like game controllers or custom hardware. This is used for hardware configuration tools.
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.