I built a New Tab replacement for developers drowning in tabs
A developer has created a Chrome/Brave extension called TabLobby to help users manage their numerous tabs more effectively. This tool replaces the default New Tab page with a workspace that displays open windows, saved collections, and offers features like live search and duplicate detection. TabLobby aims to enhance productivity by allowing users to quickly resume their work without the hassle of reconstructing their mental context.
- ▪TabLobby replaces the default New Tab page with a workspace showing all open windows and tabs.
- ▪Users can save collections of tabs for easy restoration later.
- ▪The extension includes features like live search, duplicate detection, and drag & drop functionality.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3965681) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Louis Posted on Jun 3 I built a New Tab replacement for developers drowning in tabs #chrome #productivity #typescript #webdev Every developer I know has the same problem: too many tabs, no context, and a vague sense of dread every time they open a new one. I'd open a new tab and stare at Chrome's default page — a blank slate with zero information about what I was working on.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).