Developer Tools

devtools
Low RiskCategory: Developer ToolsView Official Docs

Technical Context

Enables the extension to create panels, sidebars, and other UI elements within Chrome's Developer Tools. This is the foundation permission for all DevTools extensions.

What This Means For You

The extension can add new panels and features to Chrome's developer tools. This is only useful for web developers who use the inspector.

Related APIs

This permission enables access to these Chrome APIs:

chrome.devtools.panelschrome.devtools.inspectedWindow

Common Use Cases

  • React DevTools
  • Vue DevTools
  • Performance tools

How to Declare in manifest.json

Add the "devtools" permission to your extension manifest:

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

Related Permissions