A Chrome/Chromium browser extension that lets you instantly save and restore groups of open browser tabs — like bookmarks, but faster and smarter.
- Save your current set of open tabs with one click
- Restore any saved tab group to reopen all tabs at once
- Name your tab snapshots for easy identification
- Delete snapshots you no longer need
- Lightweight — no server, no account, data stays local in
chrome.storage
| Category | Technology |
|---|---|
| Language | JavaScript |
| Extension API | Chrome Extensions Manifest V3 |
| Storage | chrome.storage.local |
| UI | HTML + CSS (popup) |
- Open Chrome and navigate to
chrome://extensions - Enable Developer Mode (top right toggle)
- Click "Load unpacked"
- Select this
tab-snap/folder - The Tab-Snap icon will appear in your browser toolbar
tab-snap/
├── index.html # Extension popup UI
├── manifest.json # Chrome extension manifest (Manifest V3)
├── src/ # JavaScript logic (save/restore/delete tabs)
└── readme assets/ # Screenshots
- Chrome Extensions API (Manifest V3)
chrome.tabsfor reading and opening tabschrome.storage.localfor persistent extension data- Building a complete browser extension from scratch
Made with ❤️ as part of a learning journey
