<?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: karan kumar gautam</title>
    <description>The latest articles on DEV Community by karan kumar gautam (@gautamkaran).</description>
    <link>https://dev.to/gautamkaran</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2108075%2F6f98f0f1-17a5-4245-8991-5bcc8af071c2.jpeg</url>
      <title>DEV Community: karan kumar gautam</title>
      <link>https://dev.to/gautamkaran</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gautamkaran"/>
    <language>en</language>
    <item>
      <title>I Built SaveBuddy – A Simple Chrome Extension to Save &amp; Manage Bookmarks</title>
      <dc:creator>karan kumar gautam</dc:creator>
      <pubDate>Fri, 28 Aug 2026 13:24:03 +0000</pubDate>
      <link>https://dev.to/gautamkaran/i-built-savebuddy-a-simple-chrome-extension-to-save-manage-bookmarks-2oen</link>
      <guid>https://dev.to/gautamkaran/i-built-savebuddy-a-simple-chrome-extension-to-save-manage-bookmarks-2oen</guid>
      <description>&lt;h1&gt;
  
  
  SaveBuddy – A Simple Chrome Extension to Save &amp;amp; Manage Your Favorite Links
&lt;/h1&gt;

&lt;p&gt;Every day we open dozens of tabs in Chrome, and eventually lose track of important links. Digging through bookmark folders takes time, and the clutter keeps growing.&lt;/p&gt;

&lt;p&gt;I needed a &lt;strong&gt;lightweight, no-nonsense&lt;/strong&gt; solution — so I built &lt;strong&gt;SaveBuddy&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is SaveBuddy?
&lt;/h2&gt;

&lt;p&gt;SaveBuddy is a Chrome extension that lets you save links with a single click. No account required, no cloud sync — everything stays stored on your local machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;📌 &lt;strong&gt;Save links&lt;/strong&gt; with custom titles&lt;/li&gt;
&lt;li&gt;🔖 &lt;strong&gt;Save current tab&lt;/strong&gt; with one click&lt;/li&gt;
&lt;li&gt;✏️ &lt;strong&gt;Edit&lt;/strong&gt; link titles and URLs anytime&lt;/li&gt;
&lt;li&gt;📋 &lt;strong&gt;Copy URLs&lt;/strong&gt; to clipboard instantly&lt;/li&gt;
&lt;li&gt;🗑️ &lt;strong&gt;Delete&lt;/strong&gt; individual links or all at once&lt;/li&gt;
&lt;li&gt;💾 &lt;strong&gt;Local storage&lt;/strong&gt; — no tracking, no data collection&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;p&gt;The extension is built with vanilla technologies — no frameworks, no dependencies:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;HTML5&lt;/strong&gt; – UI structure&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CSS3&lt;/strong&gt; – Styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;JavaScript&lt;/strong&gt; – Logic&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chrome Extension API&lt;/strong&gt; – Browser integration&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LocalStorage&lt;/strong&gt; – Data persistence&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Clone the repo or download the ZIP&lt;/li&gt;
&lt;li&gt;Go to &lt;code&gt;chrome://extensions/&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Enable &lt;strong&gt;Developer mode&lt;/strong&gt; (top right toggle)&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Load unpacked&lt;/strong&gt; and select the SaveBuddy folder&lt;/li&gt;
&lt;li&gt;Done! The extension icon appears in your toolbar&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Save a Link Manually
&lt;/h3&gt;

&lt;p&gt;Paste a URL in the input field, optionally add a custom title, and hit &lt;strong&gt;SAVE LINK&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Save Current Tab
&lt;/h3&gt;

&lt;p&gt;Click &lt;strong&gt;SAVE TAB&lt;/strong&gt; and the active tab's URL + title gets saved instantly.&lt;/p&gt;

&lt;h3&gt;
  
  
  Manage Saved Links
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Click the &lt;strong&gt;pencil icon&lt;/strong&gt; to edit&lt;/li&gt;
&lt;li&gt;Click the &lt;strong&gt;copy icon&lt;/strong&gt; to copy the URL&lt;/li&gt;
&lt;li&gt;Click the &lt;strong&gt;trash icon&lt;/strong&gt; to delete&lt;/li&gt;
&lt;li&gt;Use &lt;strong&gt;DELETE ALL&lt;/strong&gt; to clear everything&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why Local Storage?
&lt;/h2&gt;

&lt;p&gt;Most bookmark managers force you to create accounts and sync data to their servers. SaveBuddy takes a different approach:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ Your data stays on your machine&lt;/li&gt;
&lt;li&gt;✅ No account needed&lt;/li&gt;
&lt;li&gt;✅ No tracking&lt;/li&gt;
&lt;li&gt;✅ No server calls&lt;/li&gt;
&lt;li&gt;✅ Works offline&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Privacy-first, always.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;Building this extension taught me:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Chrome Extension API&lt;/strong&gt; — &lt;code&gt;chrome.storage&lt;/code&gt;, &lt;code&gt;chrome.tabs&lt;/code&gt;, and Manifest V3&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CRUD operations&lt;/strong&gt; with localStorage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DOM manipulation&lt;/strong&gt; without any framework&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;User experience&lt;/strong&gt; — keeping things simple is harder than adding features&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Future Plans
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;[ ] Search/filter saved links&lt;/li&gt;
&lt;li&gt;[ ] Categories or tags for organization&lt;/li&gt;
&lt;li&gt;[ ] Export/Import bookmarks as JSON&lt;/li&gt;
&lt;li&gt;[ ] Dark mode support&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;SaveBuddy is completely open source. Check out the code and docs:&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;&lt;a href="https://github.com/gautamkaran/SaveBuddy" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
📖 &lt;strong&gt;&lt;a href="https://gautamkaran.github.io/SaveBuddy/" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Feel free to star the repo, open issues, or submit PRs. Contributions are welcome!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Made with ❤️ by &lt;a href="https://github.com/gautamkaran" rel="noopener noreferrer"&gt;gautamkaran&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>chromeextension</category>
      <category>javascript</category>
    </item>
    <item>
      <title>URL-Shortener-APIs</title>
      <dc:creator>karan kumar gautam</dc:creator>
      <pubDate>Wed, 09 Oct 2024 15:38:04 +0000</pubDate>
      <link>https://dev.to/gautamkaran/url-shortener-apis-1f5l</link>
      <guid>https://dev.to/gautamkaran/url-shortener-apis-1f5l</guid>
      <description>&lt;p&gt;A simple and powerful URL-Shortener-APIs that allows users to transform long URLs into Short URLs, Sharable links. All this service provides analytics, giving user the ability to track and monitor their shortened URLs performance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features of project&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;URL Shortening ✂️&lt;/strong&gt;: - Submit any long URL, and instantly receive a shorter, easy-to-share URL in return.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Redirection to Original URL 🔁&lt;/strong&gt;: - When a shortened URL is accessed, users will be redirected seamlessly to the original long URL.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Analytics 📊&lt;/strong&gt;:- Monitor the performance of your shortened URLs:&lt;br&gt;
Track the total number of clicks for each shortened URL.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Also improving code and adding new features, if you have found any issues and bug, and new feat related to this Apis please add new issues on &lt;/p&gt;




&lt;p&gt;&lt;a href="https://github.com/GautamKaran/URL-Shortener-api/" rel="noopener noreferrer"&gt;GitHub &lt;/a&gt;&lt;br&gt;
[&lt;a href="https://github.com/GautamKaran/URL-Shortener-api/issues/new" rel="noopener noreferrer"&gt;issues link&lt;/a&gt;].&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>node</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
