Talk by Dani Akash, Founding Engineer at BrowserOS, for JSLovers Chennai.
- Community: JS Lovers Chennai
- Event: JSLovers Chennai Meetup #9
- Date: March 7, 2026
- Speaker: Dani Akash, Founding Engineer, BrowserOS
- Video: YouTube recording
This talk walks through how AI agents can use the Chrome DevTools Protocol to inspect websites, debug issues, iterate on UI, and speed up real web development workflows.
The repository contains both the slides used for the session and the demo pages used to showcase common debugging and development tasks.
slides/ Slidev deck for the talk
demo/ Demo pages with intentional issues for CDP-based inspection and debugging
cd slides
pnpm install
pnpm devThis starts the Slidev deck locally.
You can serve the demo pages with any static file server. One simple option is:
npx http-server ./demo -p 3000 -oTo follow the workflow from the talk, launch Chrome with remote debugging enabled:
open -a "Google Chrome" --args --remote-debugging-port=9222 --user-data-dir=$HOME/chrome-temp-profile