Desktop Capture

desktopCapture
High RiskCategory: Browser UIView Official Docs

Install Warning

"Capture content of your screen."

Technical Context

Provides access to the chrome.desktopCapture API for capturing the entire screen, specific windows, or individual tabs as media streams. This extends beyond browser content to the full desktop.

What This Means For You

The extension can record or share your entire screen, not just browser tabs. This is necessary for full screen sharing but means it can see everything on your desktop.

Related APIs

This permission enables access to these Chrome APIs:

chrome.desktopCapture

Common Use Cases

  • Screen sharing
  • Remote support
  • Video recording

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "desktopCapture" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Capture content of your screen."

Related Permissions