<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mümin Köykıran</title>
    <description>The latest articles on DEV Community by Mümin Köykıran (@muminkoykiran).</description>
    <link>https://dev.to/muminkoykiran</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3972482%2F2acd33fc-bda6-48ed-9640-43e111e24324.jpg</url>
      <title>DEV Community: Mümin Köykıran</title>
      <link>https://dev.to/muminkoykiran</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/muminkoykiran"/>
    <language>en</language>
    <item>
      <title>How to Copy All Chrome Tab URLs as Markdown, JSON, or CSV — Free Extension</title>
      <dc:creator>Mümin Köykıran</dc:creator>
      <pubDate>Sun, 07 Jun 2026 12:17:20 +0000</pubDate>
      <link>https://dev.to/muminkoykiran/how-to-copy-all-chrome-tab-urls-as-markdown-json-or-csv-free-extension-2dpd</link>
      <guid>https://dev.to/muminkoykiran/how-to-copy-all-chrome-tab-urls-as-markdown-json-or-csv-free-extension-2dpd</guid>
      <description>&lt;p&gt;If you've ever had 30+ tabs open during a research session and needed to save or share them, you know the pain: Chrome has no built-in way to export tab URLs as text.&lt;/p&gt;

&lt;p&gt;You can bookmark them (messy, permanent), screenshot them (not clickable), or copy each one by hand (slow and error-prone). None of these are good options.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;&lt;a href="https://chromewebstore.google.com/detail/safe-tab-url-lister/lfoiekncpjoomigglgjildmjodpfmoif" rel="noopener noreferrer"&gt;Safe Tab URL Lister&lt;/a&gt;&lt;/strong&gt; to solve this. It's a free, open-source Chrome extension that copies all your open tab URLs in one click — in the format you actually need.&lt;/p&gt;

&lt;h2&gt;
  
  
  The four output formats
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Plain text — one URL per line
&lt;/h3&gt;

&lt;p&gt;The simplest option. Every tab URL on its own line, nothing else. Paste into a text file, a ticket, a chat message.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://developer.chrome.com/docs/extensions/
https://github.com/muminkoykiran/safe-tab-url-lister
https://obsidian.md/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Markdown links — perfect for Obsidian, Notion, GitHub
&lt;/h3&gt;

&lt;p&gt;This is the format I use most. Each tab becomes &lt;code&gt;[Page Title](URL)&lt;/code&gt;. Paste it straight into your daily note, a GitHub issue, a README, or any Markdown editor — you get the title &lt;em&gt;and&lt;/em&gt; the link, so you don't lose context.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Chrome Extensions Docs&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://developer.chrome.com/docs/extensions/&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Safe Tab URL Lister — GitHub&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://github.com/muminkoykiran/safe-tab-url-lister&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Obsidian&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://obsidian.md/&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Obsidian workflow&lt;/strong&gt;: Open all your research tabs → click the extension → paste into your daily note. Done. All sources are linked and titled.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. JSON array — for developers and AI assistants
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"title"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Chrome Extensions Docs"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://developer.chrome.com/docs/extensions/"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"title"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Obsidian"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://obsidian.md/"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Paste this into ChatGPT, Claude, or Gemini and say "summarize what I've been researching." Or pipe it through &lt;code&gt;jq&lt;/code&gt;, load it in Node.js, store it in a database — it's structured data ready to go.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. CSV — spreadsheet-ready
&lt;/h3&gt;

&lt;p&gt;Includes a &lt;code&gt;title,url&lt;/code&gt; header row. Open directly in Excel or Google Sheets. Good for tracking research sessions or sharing with teammates.&lt;/p&gt;

&lt;h2&gt;
  
  
  Privacy — why this is different from other tab exporters
&lt;/h2&gt;

&lt;p&gt;I checked every tab-export extension before building this. Almost all of them make network requests you can't explain — analytics, licensing checks, sync features.&lt;/p&gt;

&lt;p&gt;Safe Tab URL Lister makes &lt;strong&gt;zero network requests&lt;/strong&gt;. No servers. No accounts. No analytics. The only Chrome permission it requests is &lt;code&gt;tabs&lt;/code&gt; — the minimum needed to read the list of open tabs. Everything runs locally in your browser and is discarded when you close the popup.&lt;/p&gt;

&lt;p&gt;The full source is on &lt;a href="https://github.com/muminkoykiran/safe-tab-url-lister" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; under MIT license if you want to verify that.&lt;/p&gt;

&lt;h2&gt;
  
  
  Multi-window support
&lt;/h2&gt;

&lt;p&gt;There's a checkbox to include tabs from &lt;strong&gt;all open Chrome windows&lt;/strong&gt;, not just the current one. Check it and every tab across every window is collected in one shot.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who this is for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Obsidian / Notion users&lt;/strong&gt; — capture all research tabs as a formatted link list in one click&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developers&lt;/strong&gt; — export tabs as JSON to pipe into scripts or paste into AI assistants&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Researchers&lt;/strong&gt; — snapshot your sources at the end of a reading session without losing anything&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data analysts&lt;/strong&gt; — export to CSV and open directly in Excel or Google Sheets&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anyone who hates losing tabs&lt;/strong&gt; — save everything before closing the browser&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://chromewebstore.google.com/detail/safe-tab-url-lister/lfoiekncpjoomigglgjildmjodpfmoif" rel="noopener noreferrer"&gt;Chrome Web Store →&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Works on Chrome 88+, Edge, Brave, Vivaldi, and any Chromium-based browser with Manifest V3 support.&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://github.com/muminkoykiran/safe-tab-url-lister" rel="noopener noreferrer"&gt;github.com/muminkoykiran/safe-tab-url-lister&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>opensource</category>
      <category>productivity</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
