Tab Groups

tabGroups
Low RiskCategory: Browser UIView Official Docs

Install Warning

"View and manage your tab groups."

Technical Context

Provides access to the chrome.tabGroups API for creating, modifying, and querying tab groups. This enables automated organization of tabs into named, colored groups.

What This Means For You

The extension can create and manage the colored tab groups in Chrome, helping you organize related tabs together. It can name groups and change their colors.

Related APIs

This permission enables access to these Chrome APIs:

chrome.tabGroups

Common Use Cases

  • Tab organizers
  • Workspace managers

How to Declare in manifest.json

Add the "tabGroups" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"View and manage your tab groups."

Related Permissions