Build a Tab Manager Extension
Build a Chrome extension that helps manage browser tabs with grouping, search, and session save/restore.
Requirements
Popup UI showing all open tabs grouped by domainSearch/filter tabs by title or URL in real-timeOne-click close duplicate tabsSave current tab session with a name, restore laterSuspend inactive tabs to save memory (replace with placeholder page)Keyboard shortcut to open the manager (Ctrl+Shift+T)Technical Notes
Use Chrome Extension Manifest V3. Use chrome.tabs, chrome.tabGroups, and chrome.storage APIs.
Bonus Points
Tab group color codingExport/import sessions as JSONMemory usage display per tab