Screen Resolution Detector
Measure screen size, viewport size, DPR, orientation, fullscreen state, zoom-related signals, safe-area insets, and live change events without leaving the browser.
Screen, viewport, DPR, zoom signals, and device context in one snapshot
This detector separates screen metrics, browser viewport metrics, and rendered pixel metrics so you can debug responsive bugs without mixing them together.
Live Snapshot
These are the high-signal values most teams actually need when debugging breakpoints, render sharpness, zoom behavior, and fullscreen issues.
Screen Metrics
Viewport Metrics
Rendering Metrics
Environment
Compatibility Notes
A robust detector should be explicit about what is measured directly and what remains browser-dependent.
Display Extras
Useful when debugging dock offsets, notches, multi-display setups, or reduced-motion variants.
Raw JSON
Copy a normalized payload for bug reports, QA notes, analytics, or support tickets.
Loading...More Intel & Debugging Tools
Responsive Checker
Preview sites across common device widths
Can I Use
Check browser support for frontend APIs
Tech Stack Detector
Inspect what public websites are built with
Proxy Checker
Test proxy status, latency, and location
HTTP Header Analyzer
Inspect security and caching response headers
Meta Tag Extractor
Extract metadata from any public URL
AI Token Counter
Measure prompt size and context fit
Number Base Converter
Inspect bit-level numeric representations
What this detector is measuring
Good screen diagnostics keep three different layers separate: the physical display your operating system exposes, the CSS-pixel screen metrics the browser reports, and the viewport your page can actually render into. Most responsive bugs happen when those layers get treated as if they are the same number.
Screen metrics
Includes raw screen width and height, available screen size, screen origin, and color depth. These help when docks, taskbars, or monitor placement change the usable area.
Viewport metrics
Includes inner viewport, document client size, outer window size, visual viewport, and scrollbar width. This is usually the set you want when debugging breakpoints or clipped layouts.
Render metrics
Includes device pixel ratio and physical render estimates. These help explain why one screen looks soft while another looks crisp even when the viewport CSS pixels are identical.
Why zoom is handled carefully
Browser pinch zoom can often be observed through the VisualViewport API, but desktop page zoom is not exposed consistently across browsers. This tool surfaces the zoom signals the browser can report directly and labels the rest as browser-dependent so the output stays honest.
When this tool is most useful
Responsive QA
Compare reported screen size with actual viewport size to understand why a layout breaks at one breakpoint and not another.
Support tickets
Ask users to copy the JSON payload so engineering gets a normalized view of their screen, viewport, DPR, and feature support in one message.
Multi-display debugging
Experimental APIs can expose whether the desktop is extended and, on supporting browsers, which display the window is currently on.
Mobile safe areas
Safe-area inset reporting helps when notch, gesture bar, and installed-app layouts need different padding than a normal browser tab.