Video Capture

videoCapture
High RiskCategory: Device AccessView Official Docs

Install Warning

"Capture video from your camera."

Technical Context

Enables access to video input from the user's webcam through the MediaDevices API. This is required for video recording, photo capture, and video conferencing functionality.

What This Means For You

The extension can use your webcam to capture video or take photos. This is necessary for video calls but means it can see you when active.

Related APIs

This permission enables access to these Chrome APIs:

navigator.mediaDevices

Common Use Cases

  • Video conferencing
  • Photo tools
  • Security apps

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "videoCapture" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Capture video from your camera."

Related Permissions