Side Panel

sidePanel
Low RiskCategory: Browser UIView Official Docs

Technical Context

Grants the ability to host an extension's user interface within the browser's persistent side container. This allows for a dedicated UI that remains visible and interactive as the user navigates across different tabs or windows.

What This Means For You

This provides a sidebar companion that stays open while you browse, making it perfect for taking notes or doing research. It prevents you from having to constantly click an icon to reopen the extension's window.

Related APIs

This permission enables access to these Chrome APIs:

chrome.sidePanel

Common Use Cases

  • Note-taking apps
  • Research assistants
  • Shopping companions

How to Declare in manifest.json

Add the "sidePanel" permission to your extension manifest:

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

Related Permissions