An open API service indexing awesome lists of open source software.

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

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"`.