Add to Chrome — free

How to organize Chrome tab groups

You spend ten minutes naming a dozen Chrome tab groups, pick a color for each, collapse the three you are done with — then a Chrome update restarts the window and the careful arrangement is gone. To organize Chrome tab groups well you only need four native actions: name a group, pick a color from Chrome's palette, collapse or expand it, and drag it to reorder. Those chrome tab group tips take seconds, and Chrome tracks every attribute through the chrome.tabGroups MV3 API. The catch is that all of it lives in memory: the title, the color, and the collapsed flag exist only while the window is open, so a crash, an update, or an accidental Cmd+Q wipes the layout you built. This guide covers the organize side first — the practical tips for arranging groups — then shows how Tabwell saves the whole arrangement as a local snapshot so the names, colors, and collapsed state come back after a restart instead of opening as a flat pile of tabs.

Four ways to organize a Chrome tab group

Grouping tabs is the start; arranging the groups is what keeps a busy window readable. These four actions are parallel — do any of them in any order, as often as you like:

  • Name the group. Right-click the colored label at the start of a group, or click the group pill, and type a label — "Client", "Bug #4821", "Docs". A named group is something you can find in your own head; an unnamed colored blob is not.
  • Pick a color. Chrome lets you assign a color to each group — blue, red, green, and the rest of the palette. Use color as a category, red for whatever is on fire and green for reference, so you read the window at a glance.
  • Collapse and expand. Click the group pill to fold the group shut. A collapsed group takes up about one tab's width, so ten finished groups stop crowding the one you are working in. Click again to expand it.
  • Drag to reorder. Drag the group pill along the tab strip to move the whole group at once, or drag a single tab in or out to change its membership. Order the groups by priority and the active work sits where you expect it.

Chrome exposes every one of these attributes — title, color, and collapsed flag — through the chrome.tabGroups MV3 API, which is how an extension reads or rebuilds a group.

The arrangement is in memory, not saved

Here is the gap none of those tips close: a Chrome tab group exists only while its window is open. The name you typed, the color you picked, and the collapsed state all live in the running browser. A crash, a forced update, or an accidental window close drops every attribute at once, and Chrome's own reopen brings tabs back as a flat list — the groups are not rebuilt. Spend twenty minutes arranging and one update undoes the work.

Save the layout so it survives a restart

Tabwell snapshots the whole arrangement, not just the URLs. It walks every open window with chrome.tabs, reads each group's name, color, and collapsed flag with chrome.tabGroups, and writes the record to local IndexedDB via dexie — no account, nothing leaves the device. On restore it rebuilds each group with its original title, color, and collapsed state, so a collapsed "Archive" group comes back collapsed and a red group comes back red. This page is about organizing; for the capture-and-restore mechanics in depth, see the save tab groups guide linked below rather than repeating them here.

What the Free tier keeps

Every install starts with a 14-day Pro trial, no credit card. After the trial the Free tier keeps your latest 5 snapshots with manual save and restore and runs an auto-snapshot every 60 minutes, with group attributes recorded in every snapshot regardless of tier. Pro raises the 5-snapshot cap to unlimited, indexes every saved tab for full-text search, and auto-snapshots every 5 minutes, for $3.99/month, $29/year, or $19 one-time for the first 1,000 Founders buyers.

FAQ

Will my group names and collapsed state come back after a Chrome restart?

Yes, if you saved a snapshot first. Tabwell records each group's title, color, and collapsed flag through the chrome.tabGroups API and writes all three back on restore. Chrome's own reopen does not — it returns tabs as a flat list with the groups gone.

Does organizing tab groups need a specific Chrome version?

Native tab groups — naming, coloring, collapsing — work in current Chrome with no extension. Tabwell, which saves the arrangement, requires Chrome 114 or later because it uses the chrome.sidePanel API introduced in that release. Edge and other Chromium browsers may work but are not officially supported, and Firefox and Safari are not.

Can I reorder a whole tab group at once instead of one tab at a time?

Yes. Drag the group pill — the colored label at the start of the group — along the tab strip and the entire group moves with it. Dragging an individual tab instead changes its group membership. Tabwell records the resulting layout so the order is restored too.

How many organized snapshots can I keep for free?

Every install gets a 14-day Pro trial with no credit card. After that the Free tier keeps your latest 5 snapshots with manual save and restore and a 60-minute auto-snapshot, group attributes included at no extra cost. Pro removes the 5-snapshot cap and adds full-text search and 5-minute auto-snapshots for $3.99/month or $19 one-time during Founders pricing.

What is the chrome.tabGroups API?

It is the Chrome extension API that exposes tab group metadata — each group's title, color, and collapsed state — to extensions on Manifest V3. Tabwell reads it to capture your groups when it saves and calls it again to rebuild them on restore. It is why the arrangement survives the round-trip instead of being lost.