BrowserBridge
Installation
SKILL.md
BrowserBridge - Browser Debugging Integration
BrowserBridge enables Claude Code to interact with web browsers in real-time through a C# bridge server and Chrome/Edge extension for debugging, DOM inspection, and JavaScript execution.
Quick Start for Claude
Prerequisites Check:
curl http://localhost:3141/api/browser/health
If successful, you can execute browser commands. If connection refused, bridge server is not running.
Common Commands:
# Execute JavaScript
curl -X POST http://localhost:3141/api/browser/execute -H "Content-Type: application/json" -d '{"script": "document.title"}'