DEV Community

swift king
swift king

Posted on

How I Tamed 10,000 Chrome Bookmarks — My Exact System


I have a confession: my bookmark bar hasn't been a bar for years. It's a black hole.

I hit 10,000 bookmarks without noticing. Years of "I'll read this later" tabs, old Stack Overflow answers, dead blog posts, and three different job hunting phases, all dumped into Chrome's default bookmark manager. Search would turn up 40 results for "react" and none of them were the one I wanted. Trying to clean it up with a "duplicate cleaner" extension once deleted things I never asked it to delete — folders included.

So I built a system. Not just for my bookmarks, but for anyone whose bookmark bar is a trauma site. Here it is.

The 5 rules

Rule 1: Never delete. Move.

Deleting is permanent, and permanent is how you lose the bookmark that had the exact API docs you needed at 2am.

My rule: nothing gets deleted instantly. Everything goes to a recycle bin (30 days) where it's restorable. Same for duplicate cleanup — tools should suggest duplicates, never silently remove them. You confirm, or it doesn't happen. This one rule saved me more than once.

Rule 2: Three folders. That's it.

Not a 40-folder taxonomy. Three:

  • Inbox — everything new lands here (one-click add)
  • Active — things I use this month
  • Archive — reference material that's done being active

A bookmark's lifecycle is Inbox → Active → Archive. Once a week I spend five minutes moving things between them. That's the entire "organization system." Folder trees are how bookmark managers die; three folders don't.

Rule 3: Search beats organizing.

I stopped trying to file things perfectly. Instead:

  • Fuzzy search across title + URL — "react usememo" finds it even if the title says something else
  • Semantic search — "that article about pricing psychology" finds the article about pricing psychology, even though the title never contains those words (this runs fully locally, by the way — an embeddings model inside the browser, nothing leaves your machine)

With search that actually works, the folder structure is just a triage system, not a filing cabinet.

Rule 4: Backup before any batch operation.

Before running any cleanup, export a JSON backup of the whole library. It takes three seconds and turns every cleanup into a safe experiment. This is non-negotiable in my book.

Rule 5: A weekly 5-minute sweep.

Sunday night, while waiting for something to load: open Inbox, decide each item — archive, delete (to the recycle bin), or keep in Active. 5 minutes, every week. That's the entire maintenance cost, and it stops the pile from ever growing back.

The tool I ended up building

The existing tools were either dangerous (auto-delete) or ancient (no semantic search, no recycle bin). So I built my own Chrome extension that implements exactly these 5 rules — Bookmark Manager: recycle bin with 30-day restore, fuzzy + local AI semantic search, 3-level triage with drag & drop, one-click JSON backup. It indexes my ~10k bookmarks in about a minute and searches in milliseconds, fully offline.

If you're a fellow bookmark hoarder, it's free on the Chrome Web Store (no account, no tracking — bookmarks never leave your browser). I've linked it in the comments.

What I'm curious about

Do most people actually organize bookmarks, or do they just accumulate until search rescues them? My bet is the second one — and honestly, if search is good enough, a light triage system is all anyone needs.

Would love to hear how other people handle bookmark sprawl. Drop your system in the comments.

Top comments (1)

Collapse
 
jamiepark-design profile image
swift king

The extension I built for this (the 5 rules above): chromewebstore.google.com/detail/m... — free, local AI search, recycle bin, no account.