Tested tool guide
Tested browser tools
Checked August 16, 2026
What Third-Party Script Auditor does, with a checked example
A landing page can look lean and still load a dozen third-party scripts. This tool takes the page's HTML, or just its script tags, and turns it into a catalog: every third-party script listed, sorted into a category (analytics, ads, social, tag manager, essential), with a relative impact estimate and a suggested loading strategy for each. The estimate is derived from what your paste shows - script count, synchronous versus async or defer loading - not from network measurements. The usual surprise: a page with one tag-manager snippet can really be running a dozen scripts, none visible until the manager loads.
Worked example
A concrete input and expected output from the current implementation.
Input
<script src="https://www.google-analytics.com/analytics.js"></script>
<script src="https://www.googletagmanager.com/gtm.js"></script>
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<script async defer src="https://platform.twitter.com/widgets.js"></script>
->
Expected output
Domain Category Loading Impact Suggestion
google-analytics.com Analytics synchronous high load async, or lazy after first paint
googletagmanager.com Tag manager synchronous high audit what it injects; keep only needed containers
securepubads.g.doubleclick.net Ads async medium keep async; it blocks nothing but still uses bandwidth
platform.twitter.com Social async + defer low fine as is; or gate on user interaction
The loading-mode column comes straight from the tags: the first two are plain synchronous tags, which block rendering until they download and run, so they score high, while the ad script is async and the social widget is deferred, so they rank lower. Categories follow the vendor domain.