Tested tool guide
Tested browser tools
Checked August 16, 2026
What Website Technology Checker does, with a checked example
This tool scans HTML source you paste in and matches it against known signatures for CMS platforms, JavaScript frameworks, analytics services, and libraries: a WordPress generator meta tag, a Shopify CDN path, a gtag.js script, a jQuery filename, and similar markers. It reports each match with a category and, where the markup states one, a version number. The common surprise is that it only sees what's in the HTML you supply - content injected later by client-side JavaScript, or anything only visible in HTTP response headers, won't be detected at all.
Worked example
A concrete input and expected output from the current implementation.
Input
<head>
<meta name="generator" content="WordPress 6.4">
<script src="https://www.googletagmanager.com/gtag/js?id=UA-12345678-1"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
->
Expected output
CMS: WordPress 6.4 (meta generator tag)
Analytics: Google Analytics / gtag.js, tracking ID UA-12345678-1 (script src)
JS Library: jQuery 3.6.0 (script src filename)
Each detection is read directly off the pasted markup: the generator meta tag states the WordPress version literally, the googletagmanager.com/gtag/js path identifies Google's tag, and the jquery-3.6.0.min.js filename carries its own version number.