The Chrome team's I/O 2026 recap lists fifteen updates. Two deserve attention right away, because they genuinely change how web work is done.
DevTools for Agents
The first is Chrome DevTools for Agents. The AI assistant inside DevTools now has access to Lighthouse data and can fetch context on its own to answer open-ended questions; in parallel, external AI agents can read browser console logs and network traffic directly. LY Corporation, one of the early users, reports a 98 percent reduction in time spent on manual performance audits. The shift here is not having an AI assistant in the browser, it's having a browser that exposes its own internals as MCP-style tools to an agent. Same logic as WebMCP, but pointed at the debugging surface.
Soft Navigations API: Core Web Vitals finally see SPAs
The second update is the Soft Navigations API in Chrome 150. For years Core Web Vitals (LCP, CLS, INP) measured only a page's first load. For client-rendered sites — which is most modern applications, from Gmail to Booking.com — everything that happened after was invisible to Lighthouse, PageSpeed Insights and CrUX. Soft navigations (URL changes driven by JavaScript without a full reload) introduce new entries: soft-navigation, interaction-contentful-paint, and per-navigation slicing of layout-shift and event entries. In practice, a team running a React, Vue or Angular app can finally see how heavy its experience really is past the initial load.
Modern Web Guidance
The third notable piece is Modern Web Guidance: a blueprint Google published for coding agents, so that when a Claude or a Gemini writes frontend code it does so on top of Baseline (the set of stably supported web features) and with native accessibility. It's a signal: Google is trying to prevent agent-generated code from becoming a new layer of technical debt on the web.
Why it matters
These three announcements, taken together, point in one direction. The web is no longer a platform only for humans: it's a platform where agents write code, run it, measure it, fix it. DevTools shifts from being a developer tool to being a shared interface between developer and agent. And Core Web Vitals for SPAs close a gap that had become embarrassing.