<?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: Rajiv khanduja</title>
    <description>The latest articles on DEV Community by Rajiv khanduja (@rajiv_khanduja_418b843138).</description>
    <link>https://dev.to/rajiv_khanduja_418b843138</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%2F3813047%2F5eb74b84-8ecc-49db-9613-855350128f81.jpg</url>
      <title>DEV Community: Rajiv khanduja</title>
      <link>https://dev.to/rajiv_khanduja_418b843138</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rajiv_khanduja_418b843138"/>
    <language>en</language>
    <item>
      <title>I Built a Chrome Extension to Validate XML Sitemaps and Find Broken URLs</title>
      <dc:creator>Rajiv khanduja</dc:creator>
      <pubDate>Fri, 28 Aug 2026 07:55:16 +0000</pubDate>
      <link>https://dev.to/rajiv_khanduja_418b843138/i-built-a-chrome-extension-to-validate-xml-sitemaps-and-find-broken-urls-30fj</link>
      <guid>https://dev.to/rajiv_khanduja_418b843138/i-built-a-chrome-extension-to-validate-xml-sitemaps-and-find-broken-urls-30fj</guid>
      <description>&lt;h1&gt;
  
  
  I Built a Chrome Extension to Validate XML Sitemaps and Find Broken URLs
&lt;/h1&gt;

&lt;p&gt;While working with websites, I noticed that validating an XML sitemap can become surprisingly tedious once it contains hundreds or thousands of URLs.&lt;/p&gt;

&lt;p&gt;You can open the sitemap, inspect the XML, and check individual URLs — but that doesn't scale very well.&lt;/p&gt;

&lt;p&gt;So I built a small Chrome extension to make this process faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does it do?
&lt;/h2&gt;

&lt;p&gt;The extension takes an XML sitemap and checks the URLs contained inside it.&lt;/p&gt;

&lt;p&gt;It reports HTTP responses such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ 200 — URL is reachable&lt;/li&gt;
&lt;li&gt;↪️ 301 / 302 — URL redirects&lt;/li&gt;
&lt;li&gt;❌ 404 — URL not found&lt;/li&gt;
&lt;li&gt;⚠️ 4xx — client errors&lt;/li&gt;
&lt;li&gt;⚠️ 5xx — server errors&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This makes it easier to identify URLs that may need attention during a technical SEO audit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why build a Chrome extension?
&lt;/h2&gt;

&lt;p&gt;I wanted something lightweight for quick checks.&lt;/p&gt;

&lt;p&gt;For a full website audit, a crawler makes sense. But sometimes you already have the sitemap and simply want to answer:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Are the URLs inside this sitemap actually working?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For that use case, I wanted something that could run directly from the browser.&lt;/p&gt;

&lt;h2&gt;
  
  
  Example workflow
&lt;/h2&gt;

&lt;p&gt;The workflow is intentionally simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;XML Sitemap
     ↓
Parse sitemap XML
     ↓
Extract URLs
     ↓
Check HTTP responses
     ↓
Group results
     ↓
Review problematic URLs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For larger sitemaps, the extension processes the URLs and gives you a summary instead of requiring you to inspect them individually.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who is it useful for?
&lt;/h2&gt;

&lt;p&gt;I built it mainly with these users in mind:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SEO professionals&lt;/li&gt;
&lt;li&gt;Technical SEO developers&lt;/li&gt;
&lt;li&gt;Web developers&lt;/li&gt;
&lt;li&gt;Website owners&lt;/li&gt;
&lt;li&gt;SEO agencies&lt;/li&gt;
&lt;li&gt;People maintaining large websites&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I want to improve
&lt;/h2&gt;

&lt;p&gt;This is still an evolving project.&lt;/p&gt;

&lt;p&gt;Some features I'm considering are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Better sitemap index support&lt;/li&gt;
&lt;li&gt;More detailed URL diagnostics&lt;/li&gt;
&lt;li&gt;Canonical URL checks&lt;/li&gt;
&lt;li&gt;Indexability checks&lt;/li&gt;
&lt;li&gt;Exporting results&lt;/li&gt;
&lt;li&gt;More detailed error reporting&lt;/li&gt;
&lt;li&gt;Performance improvements for very large sitemaps&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'd especially like feedback from developers and SEO professionals who regularly work with XML sitemaps.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;The extension is free and available on the Chrome Web Store:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://chromewebstore.google.com/detail/xml-sitemap-validator-che/oelcikmlggfcljegdlmjfdpflmcdkdhk" rel="noopener noreferrer"&gt;https://chromewebstore.google.com/detail/xml-sitemap-validator-che/oelcikmlggfcljegdlmjfdpflmcdkdhk&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you work with XML sitemaps, I'd love to know:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What checks would you want a sitemap validator to perform?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>chromeextension</category>
      <category>javascript</category>
    </item>
    <item>
      <title>I built a Chrome Extension to validate sitemap.xml in one click — here's why and how</title>
      <dc:creator>Rajiv khanduja</dc:creator>
      <pubDate>Thu, 30 Apr 2026 03:25:13 +0000</pubDate>
      <link>https://dev.to/rajiv_khanduja_418b843138/i-built-a-chrome-extension-to-validate-sitemapxml-in-one-click-heres-why-and-how-3pdp</link>
      <guid>https://dev.to/rajiv_khanduja_418b843138/i-built-a-chrome-extension-to-validate-sitemapxml-in-one-click-heres-why-and-how-3pdp</guid>
      <description>&lt;h2&gt;
  
  
  The itch I had to scratch
&lt;/h2&gt;

&lt;p&gt;Every time I ran a technical SEO audit, I'd end up doing the same manual dance: copy the sitemap URL, paste it into an online validator, wait, get back a wall of output, squint at it.&lt;/p&gt;

&lt;p&gt;It felt like a solved problem that hadn't actually been solved for people who live in the browser.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Sitemap XML Validator&lt;/strong&gt; — a Chrome Extension that validates your sitemap.xml right inside Chrome, for free.&lt;/p&gt;




&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Parses any sitemap.xml URL you open in Chrome&lt;/li&gt;
&lt;li&gt;Detects malformed XML, missing tags, and structural errors&lt;/li&gt;
&lt;li&gt;Returns results instantly inside the extension panel&lt;/li&gt;
&lt;li&gt;No account, no upload, no waiting&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Who it's for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Devs doing pre-launch QA&lt;/li&gt;
&lt;li&gt;SEO professionals running technical audits&lt;/li&gt;
&lt;li&gt;Anyone managing a site with a sitemap&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The technical side (quick overview)
&lt;/h2&gt;

&lt;p&gt;The extension reads the active tab's URL, fetches the sitemap content, and runs an XML parse + validation pass. Errors and warnings are categorised and surfaced in a clean summary view.&lt;/p&gt;

&lt;p&gt;It's intentionally lightweight — no background tracking, no data sent anywhere, no bloat.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;It's live on the Chrome Web Store now, completely free.&lt;/p&gt;

&lt;p&gt;Would love feedback from the dev community — especially if you've built anything similar or have thoughts on what other checks would be useful. Drop a comment!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built as a side project. All feedback welcome.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webdev</category>
      <category>extensions</category>
    </item>
    <item>
      <title>I built a Chrome Extension to validate sitemap.xml in one click — here's why and how</title>
      <dc:creator>Rajiv khanduja</dc:creator>
      <pubDate>Thu, 30 Apr 2026 03:25:13 +0000</pubDate>
      <link>https://dev.to/rajiv_khanduja_418b843138/i-built-a-chrome-extension-to-validate-sitemapxml-in-one-click-heres-why-and-how-2j41</link>
      <guid>https://dev.to/rajiv_khanduja_418b843138/i-built-a-chrome-extension-to-validate-sitemapxml-in-one-click-heres-why-and-how-2j41</guid>
      <description>&lt;h2&gt;
  
  
  The itch I had to scratch
&lt;/h2&gt;

&lt;p&gt;Every time I ran a technical SEO audit, I'd end up doing the same manual dance: copy the sitemap URL, paste it into an online validator, wait, get back a wall of output, squint at it.&lt;/p&gt;

&lt;p&gt;It felt like a solved problem that hadn't actually been solved for people who live in the browser.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Sitemap XML Validator&lt;/strong&gt; — a Chrome Extension that validates your sitemap.xml right inside Chrome, for free.&lt;/p&gt;




&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Parses any sitemap.xml URL you open in Chrome&lt;/li&gt;
&lt;li&gt;Detects malformed XML, missing tags, and structural errors&lt;/li&gt;
&lt;li&gt;Returns results instantly inside the extension panel&lt;/li&gt;
&lt;li&gt;No account, no upload, no waiting&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Who it's for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Devs doing pre-launch QA&lt;/li&gt;
&lt;li&gt;SEO professionals running technical audits&lt;/li&gt;
&lt;li&gt;Anyone managing a site with a sitemap&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The technical side (quick overview)
&lt;/h2&gt;

&lt;p&gt;The extension reads the active tab's URL, fetches the sitemap content, and runs an XML parse + validation pass. Errors and warnings are categorised and surfaced in a clean summary view.&lt;/p&gt;

&lt;p&gt;It's intentionally lightweight — no background tracking, no data sent anywhere, no bloat.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;It's live on the Chrome Web Store now, completely free.&lt;/p&gt;

&lt;p&gt;Would love feedback from the dev community — especially if you've built anything similar or have thoughts on what other checks would be useful. Drop a comment!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built as a side project. All feedback welcome.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webdev</category>
      <category>extensions</category>
    </item>
  </channel>
</rss>
