System Display Info

system.display
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Provides access to the chrome.system.display API for querying information about connected displays including resolution, work area, and display arrangement. Useful for multi-monitor management.

What This Means For You

The extension can see information about your monitors, like their resolution and how they are arranged. This helps tools that manage windows across multiple screens.

Related APIs

This permission enables access to these Chrome APIs:

chrome.system.display

Common Use Cases

  • Window managers
  • Screenshot tools

How to Declare in manifest.json

Add the "system.display" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "system.display"
  ]
}

Related Permissions