Windows

windows
Low RiskCategory: Browser UIView Official Docs

Technical Context

Grants access to the chrome.windows API for creating, modifying, and querying browser windows. This includes normal windows, popup windows, and incognito windows.

What This Means For You

The extension can open, close, resize, and arrange browser windows. It can also detect when you are using incognito mode, though it cannot access incognito content by default.

Related APIs

This permission enables access to these Chrome APIs:

chrome.windows

Common Use Cases

  • Window managers
  • Tab organizers
  • Multi-monitor tools

How to Declare in manifest.json

Add the "windows" permission to your extension manifest:

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

Related Permissions