Audio
audioTechnical Context
Provides access to the chrome.audio API for getting information about and controlling audio devices attached to the system. This API is primarily available in kiosk mode for ChromeOS.
What This Means For You
On Chromebooks in kiosk mode, the extension can see and control connected audio devices like speakers and microphones. This is mainly for enterprise or kiosk deployments.
Related APIs
This permission enables access to these Chrome APIs:
chrome.audioCommon Use Cases
- ✓Kiosk audio control
- ✓Audio device managers
How to Declare in manifest.json
Add the "audio" permission to your extension manifest:
{
"manifest_version": 3,
"name": "My Extension",
"permissions": [
"audio"
]
}Related Permissions
Printing Metrics
printingMetricsThe extension can see statistics about printing activity, like how many pages have been printed. This is used for print tracking in offices.
File Browser Handler
fileBrowserHandlerOn Chromebooks, the extension can add new options for handling files in the Files app. This is only available on Chrome OS.
Text to Speech
ttsThe extension can make your computer read text aloud using the built-in voice. This is useful for accessibility or listening to articles.
Geolocation
geolocationThe extension can find out where you are located, either precisely through GPS or approximately through your internet connection. This is used for local search or mapping features.
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.