<?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: TuanAnhNguyen</title>
    <description>The latest articles on DEV Community by TuanAnhNguyen (@babyfox1306).</description>
    <link>https://dev.to/babyfox1306</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%2F3984616%2Fde71c87b-8271-42e5-8ca9-9c673cdf9388.jpeg</url>
      <title>DEV Community: TuanAnhNguyen</title>
      <link>https://dev.to/babyfox1306</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/babyfox1306"/>
    <language>en</language>
    <item>
      <title>I scraped Chrome Web Store reviews to find abandoned extensions that still have 100k+ users</title>
      <dc:creator>TuanAnhNguyen</dc:creator>
      <pubDate>Mon, 15 Jun 2026 03:10:32 +0000</pubDate>
      <link>https://dev.to/babyfox1306/i-scraped-chrome-web-store-reviews-to-find-abandoned-extensions-that-still-have-100k-users-3ikl</link>
      <guid>https://dev.to/babyfox1306/i-scraped-chrome-web-store-reviews-to-find-abandoned-extensions-that-still-have-100k-users-3ikl</guid>
      <description>&lt;p&gt;I've shipped 4 Chrome extensions and 2 VS Code extensions. The advice that always sounds smart — "find a popular extension the dev abandoned, rebuild it better" — is miserable in practice. You open the Web Store, see 100k users and a 4.4 rating, think you found gold, then burn a weekend reading reviews only to realize half the complaints are unfixable traps (sync died, login broke, backend gone).&lt;/p&gt;

&lt;p&gt;So I built a small pipeline to do the boring part automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  The method
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Scrape public Chrome Web Store metadata — users, rating, last-updated date.&lt;/li&gt;
&lt;li&gt;Filter: 20k–300k users, 18+ months without an update, rating 3.3–4.4 (good enough to prove demand, bad enough to prove pain).&lt;/li&gt;
&lt;li&gt;Pull up to 50 recent reviews per candidate via public CWS data.&lt;/li&gt;
&lt;li&gt;Score each one:
score = log10(users)10 + months_stale0.5 + feature_request_count2 - trap_count1.5
The key part is &lt;code&gt;trap_count&lt;/code&gt; — I subtract points for complaints about sync/login/server issues, because those are unfixable without inheriting someone else's dead backend. High "demand" with high trap count is a mirage.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  One example
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Extension Manager&lt;/strong&gt; — 100k users, 4.4★, last updated ~25 months ago. Looks healthy until you read the 1–2★ reviews:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;"The site-specific rules feature simply does not work… the core feature advertised is broken."&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;"It won't save any changes made… extensions are re-enabled automatically."&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;A user even posted an RCE report: the dev parses JSON with a &lt;code&gt;Function(str)()&lt;/code&gt; fallback — executing arbitrary code from untrusted input.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's not "build a clone." That's "fix the rules engine, kill the eval, add local backup, ship something 100k people already want."&lt;/p&gt;

&lt;h2&gt;
  
  
  The counterintuitive part
&lt;/h2&gt;

&lt;p&gt;The highest-scoring extension in my list (200k users, abandoned ~4 years) is actually the &lt;em&gt;worst&lt;/em&gt; business opportunity — it's a simple toggle utility whose users will never pay, and the original asks for camera/mic permissions (adware-grade). Raw download counts would put it at the top of your build list. Revenue potential buries it.&lt;/p&gt;

&lt;p&gt;That gap between "looks like an opportunity" and "is actually monetizable" is the whole reason I started scoring monetization separately.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I did with it
&lt;/h2&gt;

&lt;p&gt;I analyzed 30 of these — 14 deep-dives and 16 honest "avoid this" verdicts — with demand, the gap, build difficulty, monetization reality, and why nobody rebuilt it yet. Packaged it with the raw CSV here if it's useful to anyone: &lt;a href="https://tuanspark85.gumroad.com/l/wnnxyq" rel="noopener noreferrer"&gt;https://tuanspark85.gumroad.com/l/wnnxyq&lt;/a&gt; (there's a free Top-3 preview too).&lt;/p&gt;

&lt;p&gt;Happy to answer questions about the scraping pipeline in the comments — what tripped me up was the CWS review endpoint and pagination.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>chrome</category>
      <category>indiehackers</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
