Service worker checker
Finds a page's service worker registration and statically inspects the registered script - not full execution.
1 · Input
What is checked
The page's static HTML is scanned for a navigator.serviceWorker.register(...) call; if one is found, the registered script itself is fetched and checked for HTTPS delivery, reachability, MIME type, and a text-level scan for install, activate and fetch event listeners and Cache API usage.
Static inspection, not execution
This never runs the service worker - it reads the registered file as text. A registration added dynamically by a separately-loaded script bundle, or lifecycle listeners attached through a helper function rather than a literal addEventListener call, will not be visible to this check.
Rate this tool
Was this tool useful? Your feedback helps us improve it.