Audio Capture

audioCapture
High RiskCategory: Device AccessView Official Docs

Install Warning

"Capture audio from your microphone."

Technical Context

Allows the extension to access audio input from the user's microphone through the MediaDevices API. This enables voice recording, transcription, and audio communication features.

What This Means For You

The extension can listen through your microphone and record audio. This is necessary for voice commands or transcription but means it can hear what you say.

Related APIs

This permission enables access to these Chrome APIs:

navigator.mediaDevices

Common Use Cases

  • Voice recorders
  • Transcription
  • Video conferencing

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "audioCapture" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "audioCapture"
  ]
}

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Capture audio from your microphone."

Related Permissions