Debugging a live web app usually means a human opening Chrome DevTools and poking at the console. In June 2026, OpenAI gave that power to its coding agent: Codex now has a Developer mode for browser use that drives the Chrome DevTools Protocol directly.
## What Developer mode does
With full CDP access turned on, Codex can profile JavaScript performance, read network traffic, inspect console output, intercept runtime errors, and analyze page state such as the DOM and applied styles — all in a live browser rather than guessing from source code. The point is to let the agent diagnose real front-end issues the way a developer would, watching what the page actually does at runtime. OpenAI also says browser use is up to 2x faster thanks to CDP and DOM-snapshot optimizations that cut round trips.
## Guardrails
Because full CDP access can reach sensitive browser internals, it is off by default. Codex asks for explicit approval before using it on a given site, and administrators can disable it entirely with a config flag. You enable it under Settings > Browser. The framing matters: the agent gets real debugging reach, but each site and task is gated behind human approval rather than open-ended access.

Leave a comment