What problem does it solve?
This Skill enables programmatic browser control via the Chrome DevTools Protocol, letting you automate navigation, form interactions, content extraction, and multi-tab workflows from Claude Code, dramatically reducing manual browsing time.
Core Features & Use Cases
- Multi-tab management: Open, switch, and close tabs without manual clicking.
- Form automation & data extraction: Fill inputs, click controls, and pull HTML/text/attributes.
- SPA navigation & DOM captures: Navigate without full page reloads and capture DOM snapshots, markdown, and screenshots for auditing.
- Use Case: Validate a multi-step user journey across several pages and export a summary for QA.
Quick Start
- Start Chrome via the CLI tool (auto-starts on first use) and connect to a page.
- Navigate to a page: {action: "navigate", payload: "https://example.com"}
- Wait for content: {action: "await_element", selector: "h1"} or {action: "wait-text", payload: "Example"}.
- Extract content: {action: "extract", payload: "text", selector: "h1"}