Theme

theme
Low RiskCategory: Browser UIView Official Docs

Technical Context

Allows the extension to customize Chrome's visual appearance by modifying colors, images, and other UI elements. Theme extensions are limited to visual changes and cannot access browsing data.

What This Means For You

The extension can change how Chrome looks, like the colors of tabs and toolbars. It cannot see what websites you visit or read any of your data.

Common Use Cases

  • Visual themes
  • Dark mode
  • Accessibility

How to Declare in manifest.json

Add the "theme" permission to your extension manifest:

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

Related Permissions