DEV Community

pmestre-Forge
pmestre-Forge

Posted on

My Obsidian Tab-to-Vault Workflow (with a Free Chrome Extension)

Here's a workflow problem I couldn't find a good solution for:

I do most of my research in Chrome. I find articles, documentation, forum threads, videos — and I open them all as tabs. By the end of a research session, I've got 30+ tabs that represent hours of curated knowledge.

Then I need to get those tabs into Obsidian.

The Old Way (Manual and Painful)

My previous workflow was embarrassing:

  1. Open Obsidian
  2. Create a new note
  3. Go back to Chrome
  4. Copy the URL of tab #1
  5. Go back to Obsidian
  6. Paste it, format as Markdown link
  7. Repeat for 30+ tabs
  8. Lose the will to live around tab #15

I tried various tab export extensions. They all exported as HTML bookmark files or plain text dumps. None of them spoke Markdown natively.

The New Way

I built Tab Stash specifically to solve this. Here's my workflow now:

  1. Finish a research session in Chrome
  2. Click the Tab Stash icon
  3. Name the session (e.g., "React Server Components Research")
  4. Hit Save
  5. Click "Copy as Markdown"
  6. Paste into Obsidian

That's it. The output looks like this:

## React Server Components Research
- [Understanding RSC](https://example.com/rsc-guide)
- [Server vs Client Components](https://example.com/comparison)
- [Dan Abramov's RFC](https://example.com/rfc)
Enter fullscreen mode Exit fullscreen mode

Format Options

Tab Stash supports multiple Markdown formats because different PKM tools expect different things:

Standard Markdown links — works everywhere:
[Page Title](https://url.com)

Wiki-links — for Obsidian users who prefer internal link style:
[[Page Title]]

Numbered lists — for ordered research:
1. [First Source](url)

Plain text — just titles and URLs, no formatting

The Auto-Export Trick

The feature I use most is auto-export. Tab Stash can automatically save sessions as .md files to a folder on your machine.

I point that folder at my Obsidian vault's "Research" directory. Now every time I save a tab session, it appears in my vault automatically. No copy-paste needed.

Privacy Note

Tab Stash uses minimal permissions — it only accesses your tab data when you click the icon. No background tracking, no analytics, no cloud sync. Everything stays local.


Get Tab Stash — Free on Chrome Web Store

What's your browser-to-vault workflow? I'd love to hear other approaches.

Top comments (0)