DEVTOOLS
.JOURNAL

Building 104+ free tools. Shipping daily.


Latest
✦ ✦ ✦

I Built 104+ Free Developer Tools

June 2026 · 6 min read · Engineering

What started as frustration with paywalled, ad-covered developer tools became a collection of 104+ free browser-based tools — no signup, no API keys, no server uploads. Every tool runs entirely in your browser.

Every tool is free, requires no signup, and keeps your data private. That's not a feature list — it's a principle.

The Problem

Every developer has bookmarked a tool site only to find it paywalled, covered in ads, or requiring signup. The most popular JSON formatter extension (1M+ users) started injecting ads. Color picker tools are bloated. SEO tools charge monthly fees for basic functionality.

I built alternatives. 135 of them.

What's Inside

CategoryHighlights
JSON & DataJSON Hero (5-in-1), JSON Path Finder, CSV Viewer, API Mock Server, JSON Diff
Text & CodeRegex Tester & Debugger, Diff Checker, Code Formatter & Minifier, Markdown Preview
Web & SEOMeta Tag Generator, OG Preview, SEO Booster, HTTP Status Codes, Sitemap Generator
CSS & DesignColor Wheel Picker, CSS Gradient, Image Compare, SVG Optimizer, Background Pattern
EncodingHash Generator (MD5→SHA-512), Base64, JWT Decoder, Password Generator, Data URL Encoder
DevOpsCron Expression Builder, Docker Compose Generator, Server Config, DNS Lookup
ProductivityLorem Ipsum Gen, Git Cheatsheet, Emoji Picker, Timestamp Converter, Number Base

Technical Decisions

What I Learned

  1. Ship fast, iterate later — A working tool beats a perfect tool that doesn't exist yet.
  2. Single-file architecture scales — 104+ tools, zero build complexity. Each tool is independent and deployable in 30 seconds.
  3. SEO compounds — Each tool has unique title, meta description, and OG tags. The hub site cross-links everything. 447+ daily page views and growing.
  4. Free tools drive paid products — The tools funnel traffic to our Chrome extensions. Generosity isn't charity — it's strategy.
Tools > Marketing. Build something useful and the traffic follows. What 104+ tools taught me

The Numbers

MetricValue
Total tools104+
Chrome extensions8
Daily page views447+ (growing)
GitHub repositories100+
Gross margin~92% (marginal cost ≈ $0)

Building ResellBuddy — Automating Poshmark & Mercari for Resellers

June 2026 · 5 min read · Product

Poshmark reselling is a real side hustle — some sellers make $2,000+/month. But the daily grind of sharing listings, liking items, and following users takes 2-3 hours. ResellBuddy automates the repetitive stuff so you can focus on sourcing and listing.

The Problem

On Poshmark, visibility is everything. The more you share, like, and follow, the more your items show up in search and feeds. Top sellers share 50-100 times daily. That's 2-3 hours of clicking buttons.

I built ResellBuddy to automate this. One click, and it handles the repetitive engagement while you do something more valuable with your time.

Features

FeatureFreePro ($9/mo)
Auto-Share Listings50/dayUnlimited
Auto-Like Items
Auto-Follow Users
Unfollow Non-Followers
Offer to Likers
Auto-Relist Old Items
Posh Party Sharing
Analytics DashboardBasicFull
Scheduler

Why Offer to Likers Is the Killer Feature

When someone likes your item, they're expressing interest but might not pull the trigger. Sending them a discounted offer (10-20% off) triggers a notification and creates urgency. In testing, offer-to-likers increased sales by 35%. It's the single highest-conversion action on Poshmark.

Offer-to-likers increased my sales by 35%. It's the highest-ROI feature in the extension. From user testing data

How It Works

ResellBuddy is a Chrome Extension (Manifest V3) that injects a control panel into Poshmark and Mercari pages. It uses content scripts to interact with page elements — clicking share/like/follow buttons with human-like random delays (3-8 seconds between actions) to avoid triggering platform rate limits.

The offer-to-likers feature uses a hidden iframe approach — loading each listing page in the background without destroying the content script, finding the offer button, and submitting discounted offers automatically.

Pricing & Competition

ToolPriceOffer to Likers
ClosetPilot$30/mo
PosherVA$25/mo
ClosetMate$10/mo
Closet Assistant$8/mo
ResellBuddyFree / $9/mo

At $9/month for Pro, ResellBuddy is the most affordable option with the most valuable feature. One successful offer-to-likers sale pays for the entire month.

The Chrome Extension Side Hustle — What I Wish I Knew

June 2026 · 6 min read · Business

Chrome extensions are the most underrated indie software opportunity. Low development cost, high margins, and built-in distribution through browser stores. Here's everything I learned building 8 extensions and 104+ free tools.

Why Chrome Extensions?

The 8 Extensions I Built

ExtensionPurposePrice
ResellBuddyPoshmark & Mercari automationFree / $9/mo
JSON Hero5-in-1 JSON toolkitFree
DevTool BoxColor picker, font detect, CSS inspectorFree
SEO BoosterMeta tag viewer & editorFree
TabSaverSave & restore browser tabsFree
Link CheckerFind broken links on any pageFree
Cookie EditorView, edit, export cookiesFree
Speed AnalyzerPage performance metricsFree

Pricing Research That Changed Everything

I spent a full day analyzing competitor pricing. The key insight: $4.99 is the impulse-buy sweet spot for browser extensions. Below $5, people don't deliberate — they just buy.

For subscriptions, tiered pricing beats flat pricing by ~94% in revenue:

StrategyRevenue/User
Single tier: $9/mo$9
Free + Pro $9/mo$17.50 (upsell from free)

The free tier acts as a permanent trial. Users who hit the 50-action daily limit are already hooked — they upgrade because they want more, not because they're evaluating.

The Funnel Strategy

My strategy in three layers:

  1. Layer 1: Free SEO tools (104+) — Each tool captures long-tail search traffic. "JSON formatter", "color picker", "cron builder" — these compound over time.
  2. Layer 2: Free Chrome extensions (7) — Convert tool users into extension users. Extensions live in the browser = daily engagement.
  3. Layer 3: Paid products (ResellBuddy Pro, Starter Kit) — The monetization layer. Free users convert when they hit limits or need premium features.
Tools > Marketing. Build something useful and the traffic follows. Free tools are the top of the funnel. The strategy that works

What Failed

Not everything worked. Here's what I abandoned:

Key Takeaways

  1. Ship first, validate later — Don't overthink. Build in a weekend, deploy, see if anyone cares.
  2. Free tools compound — Each tool is an SEO landing page. After 6 months, 447+ daily views and growing.
  3. Edge Add-ons is free — Microsoft's store costs $0 to submit (vs Chrome Web Store's $5). Same users, zero cost.
  4. $4.99 < $5 = impulse — The psychology of pricing matters more than the economics.
  5. Don't fight CAPTCHAs — If a platform doesn't want bots, don't build bots for that platform.

The Single-File Architecture That Scales to 104+ Tools

June 2026 · 5 min read · Engineering

When I started building developer tools, I defaulted to React + Vite + TypeScript. After all, that's what professionals use, right? Three tools in, I switched to single HTML files. 135 tools later, I haven't looked back.

The Architecture

Each tool is exactly one HTML file with inline CSS and inline JavaScript. No build step. No npm. No framework. Here's what a tool looks like:

Why Not React?

I'm not anti-React. React is great for complex applications. But developer tools are not complex applications. A JSON formatter doesn't need virtual DOM diffing. A color picker doesn't need state management.

The cost of "modern" tooling for simple tools:

MetricReact + ViteSingle HTML
Build time2-5 seconds0 seconds
Output size50-200 KB5-20 KB
Dependencies50+ packages0
Time to first tool30 min setup5 min writing
Deploymentbuild → deploydeploy (it's already built)
A JSON formatter doesn't need virtual DOM diffing. A color picker doesn't need state management. Use the right tool for the job. Why I chose simplicity

Deployment Pipeline

  1. Write — Create one HTML file (5-30 min)
  2. Create projectnpx wrangler pages project create tool-name
  3. Deploynpx wrangler pages deploy tool-name/ --project-name=tool-name
  4. Update hub — Add entry to the tools array in the hub site

Total time from idea to live URL: 10-35 minutes. No CI/CD pipeline needed. No Docker. No build cache invalidation.

The Tradeoffs

What You Lose

What You Gain

When to Use This Architecture

Use single-file when: Small interactive tools, calculators, generators, converters, formatters — anything where the core logic is under 500 lines of JS.

Don't use single-file when: Complex applications with auth flows, real-time data, complex state, or team collaboration. Use a proper framework for those.

Get the next article in your inbox

Weekly notes on building developer tools, shipping fast, and lessons from the trenches.