https://github.com/ryanbbrown/chrome-tab-groups-exporter
Chrome extension to import/export tab groups
https://github.com/ryanbbrown/chrome-tab-groups-exporter
Last synced: 23 days ago
JSON representation
Chrome extension to import/export tab groups
- Host: GitHub
- URL: https://github.com/ryanbbrown/chrome-tab-groups-exporter
- Owner: ryanbbrown
- Created: 2025-12-20T00:03:43.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-12-20T01:02:47.000Z (6 months ago)
- Last Synced: 2025-12-22T11:10:12.970Z (6 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tab Group Manager
A Chrome extension to export and import tab groups as JSON. Useful for transferring tab sessions between Chrome profiles or computers. See [here](https://chromewebstore.google.com/detail/tab-group-manager/ikdlmbaibalnaaaklmffbmdncelendma) on the Chrome extension store.
## Features
- **Export** current tab groups to clipboard as JSON
- **Import** tab groups from JSON into your current window
- Select which groups to export or import
## Installation
1. Clone or download this repository
2. Open Chrome and go to `chrome://extensions`
3. Enable "Developer mode" (top right)
4. Click "Load unpacked" and select this folder
## Usage
### Export
1. Click the extension icon
2. Click **Export**
3. Select which tab groups to include
4. Click **Copy** to copy JSON to clipboard
### Import
1. Click the extension icon
2. Click **Import**
3. Paste your JSON
4. Click **Load Groups**
5. Select which groups to open
6. Click **Open Selected Tabs**
## JSON Format
```json
{
"Work": [
"https://github.com",
"https://example.com"
],
"Research": [
"https://wikipedia.org"
],
"nogroup": [
"https://google.com"
]
}
```
Ungrouped tabs are stored under `"nogroup"`.