Page Size Checker by SpellMistake: Current Status and Better Alternatives
If you've been searching for the page size checker by SpellMistake and keep hitting dead ends, you're not imagining things.
Based on available evidence, there's no confirmed active version of this tool right now. This article covers what it was meant to do, the actual size thresholds that matter, and tools that work today.
Is the Page Size Checker by SpellMistake Still Available?
Short answer: it doesn't appear to be. There's no verifiable, currently accessible tool under that name at the time of writing.
That's not the same as saying it never existed it may have been discontinued, renamed, or folded into another product. Nobody has published anything confirming which of those happened.
In practice, this kind of gap is more common than people expect. Small or single-purpose SEO tools come and go quietly, often without an announcement, and search results keep pointing to old mentions long after the tool itself is gone.
If you've found references to it in old forum posts or articles, that's likely what you're seeing.
What matters more than tracking down one specific tool is understanding what a page size checker is supposed to measure, and using something that does that job reliably right now.
What a Page Size Checker Actually Measures
There are two different things people mean when they say "page size," and mixing them up causes a lot of confusion.
Raw HTML Size vs. Total Page Weight
Raw HTML size is just the size of the document itself the text-based source code Googlebot downloads when it crawls a page.
Total page weight is everything: HTML plus images, CSS, JavaScript, fonts, and any embedded media.
A page can have a small HTML file but still load slowly because of heavy images or scripts pulled in afterward.
This distinction matters because Google's crawling limits apply specifically to raw HTML, not the full page weight. A checker that only reports total page weight won't tell you if you're near Google's actual crawl ceiling.
Why This Affects SEO and Site Speed
Search engines allocate a limited crawl budget to each site, a concept explained in more detail according to Wikipedia overview of Googlebot. Larger pages eat into that budget faster, which can mean fewer pages get crawled in a given session.
If the HTML itself is too large, content near the bottom of the page footer links, late structured data risks not being processed at all.
Page weight, separately, affects load time and Core Web Vitals like Largest Contentful Paint and Interaction to Next Paint and this matters even more given that mobile devices already account for more than half of global web traffic, according to data from Statista.
Teams commonly report noticing crawl or indexing delays only after checking raw HTML size specifically, not just overall load time.
Google's Page Size Thresholds
These are the reference points worth checking your pages against:
|
HTML Size Range |
Status |
What It Means |
|
Under 500KB |
Ideal |
Crawled efficiently, minimal risk |
|
500KB–2MB |
Acceptable |
Worth monitoring, not urgent |
|
2MB–15MB |
Risk zone |
Crawl budget strain, possible delayed indexing |
|
Over 15MB |
Hard cutoff |
Content beyond this is not processed by Google |
Most ordinary web pages sit well under 500KB. If you're seeing numbers in the multi-megabyte range, that's usually a sign something specific inline scripts, embedded images, excessive markup is inflating the page well beyond what it needs.
How to Check Your Page Size Right Now
Using Browser DevTools
This works without installing anything. Open your page in Chrome, press F12, go to the Network tab, and reload. The total transferred size and request count show up at the bottom of that panel. Sort by size to find the heaviest individual files quickly.
The Coverage tab, one tab over in DevTools, will also flag unused CSS and JavaScript useful if your page size seems high but you're not sure why.
Using Dedicated Page Size Tools
Several free tools measure page size directly, and some separate raw HTML size from total page weight, which is the more useful split.
Others, like GTmetrix, WebPageTest, and Pingdom, are built more around overall load performance and report total weight alongside request counts and waterfall charts.
Google PageSpeed Insights leans more toward Core Web Vitals scoring than raw size reporting, so it's a supplement rather than a replacement for a dedicated size check.
In practice, most people checking page size for SEO reasons want the HTML-specific number, while those checking for speed reasons care more about total weight it's worth being clear on which one you actually need before picking a tool.
Common Causes of an Oversized Page
A handful of patterns account for most bloated pages:
- Inline CSS and JavaScript embedded directly in the HTML instead of linked externally
- Excessive DOM elements from deeply nested layouts, mega menus, or auto-generated grids
- Base64-encoded images sitting inside the HTML rather than referenced as separate files
- Heavy JSON-LD structured data, especially on product pages with many variants
- Third-party scripts — analytics tags, chat widgets, ad scripts — injected at render time
None of these are dramatic on their own. It's usually the combination that pushes a page from acceptable into risk-zone territory.
How to Reduce Page Size
- Move inline CSS and JavaScript into external files the browser can cache
- Simplify overly nested DOM structures where possible
- Lazy-load images and non-critical content below the fold
- Reference images externally instead of embedding them as base64 strings
- Enable server-side compression (gzip or Brotli) for HTML responses
Organisations in this space typically find that fixing the two or three biggest contributors usually inline scripts and unoptimized images recovers most of the size, without needing to touch everything at once.
Building a Simple Audit Routine
Checking page size once and forgetting about it isn't enough, since templates and content change over time.
A reasonable routine looks like checking template pages (homepage, category, product, blog post) individually, since one bloated template affects every page using it.
It's also worth rechecking pages after deployments or plugin updates, since those are common points where size quietly creeps up.
Conclusion
There's no confirmed, currently accessible page size checker by SpellMistake.
What holds up regardless of that tool's status is the underlying guidance: know your HTML size, check it against Google's thresholds, and fix the handful of common causes that push pages into risk territory.
Frequently Asked Questions
What is Google's maximum page size for crawling?
Google's documented hard cutoff is 15MB for raw HTML. Pages beyond that aren't processed at all. Staying under 500KB is considered ideal for efficient crawling.
Does the SpellMistake page size checker still work?
There's no confirmed evidence it's currently active or accessible. It may have been discontinued or renamed, though that hasn't been publicly confirmed.
What's the difference between HTML size and total page weight?
HTML size is just the document's source code. Total page weight includes images, CSS, and JavaScript too. Google's crawl limits apply to HTML size specifically.
What free tools can I use instead?
Browser DevTools (Network tab) works with no installation. GTmetrix, WebPageTest, and Pingdom report total page weight and load performance as alternatives.
How often should I check my page size?
Checking template pages periodically, and again after any deployment or plugin update, catches most size regressions before they affect crawling or load time.