There's a category of tools that exists between "I'll just write this myself" and "I need a full SaaS subscription for this." They're small, specific, browser-based utilities that solve one thing really well — no signup, no subscription, no friction.
These are five I've settled on after trying dozens. They cover the tasks that recur across frontend and backend work, as well as general web maintenance: redirects, sitemaps, text encoding, number conversion, and text transformation.
- HTACCESS Redirect Generator
The situation: You're migrating a site, cleaning up URL structure, or enforcing HTTPS. You need .htaccess redirect rules, and you don't want to hand-write Apache mod_rewrite syntax from memory (or risk a 500 error from a typo).
The tool: OurToolkit HTACCESS Redirect Generator
Enter the old URL, the new URL, and choose 301/302/303/307 — it generates the correct Apache code. That's it.
# What the tool generates for a simple 301:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^old-page\.html$ /new-page [R=301,L]
What I actually use it for:
- Site migrations (the bulk of my
.htaccessusage) - HTTP → HTTPS rules when my hosting control panel doesn't handle it automatically
- Cleaning up old URLs after a CMS switch from WordPress to something static
Why it saves time: The difference between Redirect (mod_alias) and RewriteRule (mod_rewrite) matters for query string handling. Getting that wrong silently breaks things. The generator handles the distinction correctly and includes comments explaining what each line does.
2. XML Sitemap Validator
The situation: You've generated or updated your sitemap and you want to make sure it's actually valid before submitting to Google Search Console. Search Console's error messages are vague — it's better to catch issues before submission.
The tool: OurToolkit XML Sitemap Validator
Paste your sitemap XML or enter a URL. It checks for:
- Missing or incorrect namespace (
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9") - Relative URLs in
<loc>(should always be absolute) - HTTP URLs on HTTPS sites
- Wrong
<lastmod>date format (must beYYYY-MM-DD) - Unclosed tags
- Unescaped
&characters in URLs - Files over the 50,000 URL limit
The most common error I see in the wild is developers including noindex pages in sitemaps — which sends Google a contradictory signal ("index this page" in the sitemap vs. "don't index this page" in the meta tag). The validator catches this and explains the issue.
Why this matters: A broken sitemap doesn't announce itself. Your site keeps running, Google keeps crawling — but it's potentially missing pages because the sitemap it's relying on has parsing errors. This tool gives you peace of mind in about 30 seconds.
3. Binary to Decimal Converter (with Working Shown)
The situation: You're working with bitwise operators, reading a memory dump, debugging IP subnetting, or checking Unix permissions in octal. You need to convert between number bases and you want to understand the calculation, not just see the output.
The tool: OurToolkit Binary to Decimal Converter
The differentiator here is that it shows the step-by-step multiplication table for every conversion — so you can see why 1101₂ = 13₁₀, not just that it does.
Binary: 1 1 0 1
│ │ │ └── 1 × 2⁰ = 1
│ │ └──── 0 × 2¹ = 0
│ └────── 1 × 2² = 4
└──────── 1 × 2³ = 8
───
13
Converts both ways: decimal → binary shows the division-by-2 method step by step.
What I actually use it for:
- Verifying my mental math when working with bitmask permissions
- Teaching junior devs why
255.255.255.0=/24in CIDR notation - Checking octal values for chmod commands
4. Base64 Encoder/Decoder
The situation: You're dealing with Basic Auth headers, embedding images in CSS/HTML, reading JWT tokens, or working with data URIs. Base64 encoding appears constantly in web development and there's no built-in browser tool for it.
The tool: OurToolkit Base64 Encoder/Decoder
Paste text or a data string, click encode or decode, copy the result. Handles both standard Base64 and URL-safe Base64 (which replaces + with - and / with _, important for JWT and URL contexts).
Real workflow I use this for:
# Generate a Basic Auth header value manually
echo -n "username:password" | base64
# dXNlcm5hbWU6cGFzc3dvcmQ=
# Then set it as:
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=
The browser tool is faster than switching to a terminal when I'm already in the browser debugging a request.
Also useful for: Inspecting JWT tokens by decoding the payload section (the middle part between the dots) — though be aware the tool won't verify the signature, just decode the payload.
5. Fancy Text / Unicode Text Generator
The situation: This one sounds frivolous, but it has a legitimate developer use case — LinkedIn posts and Twitter/X threads. Plain text in a wall of text feeds gets ignored. Bold Unicode characters in key phrases genuinely increase engagement because they stand out before a reader decides whether to read.
The tool: OurToolkit Fancy Text Generator
50+ Unicode font styles — bold, italic, bold italic, Gothic, monospace, double-struck, small caps, and more. The monospace style in particular is useful for tech content where you want to signal "this is code-related" in a context that doesn't support markdown formatting (LinkedIn doesn't render markdown in posts).
What this actually is technically: The "bold" and "italic" aren't CSS — they're completely different Unicode code points from the Mathematical Alphanumeric Symbols block (U+1D400 range). This is why they persist across copy-paste: the characters themselves carry the appearance.
The accessibility caveat: Screen readers read these characters by their Unicode names ("Mathematical Bold Capital H...") rather than the letters they represent. Don't use Unicode bold for content that needs to be accessible — announcements, calls to action, critical information. Use it for decorative headers and visual hierarchy only.
What Makes These Worth Bookmarking
The common thread: they all work in the browser without an account. No OAuth, no email confirmation, no free trial that expires. The output appears instantly and you can copy it immediately.
For the tools I use occasionally (sitemap validator, HTACCESS generator), the no-login requirement is essential — I don't want to recover a password for a tool I use once a month. For the ones I use frequently (base64, binary conversion), it's about speed: open a tab, paste, copy, close.
The full toolkit — all 100+ tools — is at ourtoolkit.online. Most of it is exactly what you'd expect: image converters, SEO tools, calculators, developer utilities. But the five above are the ones I've genuinely settled into as daily/weekly habits.
What are your go-to browser-based tools? I'm always looking for things in this category — drop your favourites in the comments.
`
Top comments (0)