Free online developer tools. No login, no ads, no tracking. Everything runs in the browser.
Live site: aftabkh4n.github.io
A collection of 30 browser-based tools for developers and technical users. JSON formatters, encoders, converters, generators, validators. The kind of tools you Google ten times a week and end up on some slow ad-covered site that barely works on mobile.
This is the cleaner version of that.
- JSON Formatter and Validator
- XML Formatter
- JSON to CSV Converter
- Base64 Encoder / Decoder
- URL Encoder / Decoder
- HTML Entity Encoder / Decoder
- Word Counter
- Diff Checker
- Lorem Ipsum Generator
- Remove Duplicate Lines
- Text Case Converter
- String Length Counter
- Markdown to HTML Converter
- Regex Tester
- JWT Decoder
- UUID Generator
- Unix Timestamp Converter
- Cron Expression Generator
- HTTP Status Codes Reference
- Number Base Converter (Binary, Decimal, Octal, Hex)
- Password Generator
- Hash Generator (SHA-1, SHA-256, SHA-384, SHA-512)
- CSS Minifier
- CSS Beautifier
- Color Converter (HEX, RGB, HSL)
- HTML Formatter
- JavaScript Minifier
- XML to JSON Converter
- YAML Validator
- QR Code Generator
- Robots.txt Generator
Every tool is a single HTML file. No build system, no npm, no framework. Just HTML, CSS, and vanilla JavaScript.
The site is hosted on GitHub Pages for free. The shared stylesheet lives in style.css at the root and each tool references it with a relative path.
aftabkh4n.github.io/
├── index.html
├── style.css
├── sitemap.xml
└── tools/
├── json-formatter/index.html
├── word-counter/index.html
├── regex-tester/index.html
└── ...
Clone the repo and open index.html in a browser. No server needed for most tools. The YAML validator loads a library from a CDN so you need internet access for that one.
git clone https://github.com/aftabkh4n/aftabkh4n.github.io
cd aftabkh4n.github.io
# open index.html in your browser- Create a folder under
tools/with a short URL-friendly name - Create
index.htmlinside it - Link the shared stylesheet:
<link rel="stylesheet" href="../../style.css" /> - Use the standard header HTML for consistency
- Add the tool card to
index.htmlat the root - Add the URL to
sitemap.xml
- Pure HTML, CSS, JavaScript
- No frameworks, no build tools
- GitHub Pages for hosting
- Google Search Console for indexing
- One external CDN dependency for YAML parsing and QR code generation
30 tools live. Adding more weekly. Google Search Console verified and sitemap submitted.
MIT