Tabs

tabs
High RiskCategory: Privacy & NavigationView Official Docs

Install Warning

"Read your browsing history."

Technical Context

Grants access to the chrome.tabs API, enabling the extension to query metadata about all open tabs including URLs, titles, and favicons. This permission is required for extensions that need to manage, organize, or display information about your browser tabs.

What This Means For You

The extension can see what websites you have open in all your tabs, even if you are not actively using them. This is necessary for tab managers but means the extension knows your browsing patterns.

Related APIs

This permission enables access to these Chrome APIs:

chrome.tabs

Common Use Cases

  • Tab managers
  • Session savers
  • Productivity dashboards

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "tabs" permission to your extension manifest:

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

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Read your browsing history."

Related Permissions