Render blocking resources checker that flags every CSS and JS file delaying first paint. See sizes, host, and recommended fix.

Spot synchronous <script> tags in the <head> that delay first paint.
List stylesheets the browser must download before rendering.
Tells you whether to add defer, async, media, or inline a critical chunk.
Render-blocking resources are one of the most common LCP killers.
Any <script> in the head without defer/async, and any <link rel="stylesheet"> without media or preload tricks. The browser must download and process them before painting.
Use defer for most third-party scripts — it preserves order and runs after parsing. Use async only for independent scripts (analytics, ad pixels).
Inline the critical CSS for above-the-fold content, then load the full stylesheet with media="print" onload swap or rel="preload".
No. Each scan is one-shot and discarded after display.
Yes — it's one of the highest-impact wins for LCP and First Contentful Paint.
Want your whole site this fast? Our team offers full website speed optimization — done for you .