You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/browser/REFERENCE.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -393,6 +393,61 @@ browse network clear
393
393
394
394
---
395
395
396
+
### CDP Event Tailing
397
+
398
+
#### `cdp <url|port>`
399
+
400
+
Attach to any Chrome DevTools Protocol target and stream events as NDJSON (one JSON object per line). This command bypasses the daemon entirely — it opens a direct WebSocket connection and runs until interrupted.
401
+
402
+
```bash
403
+
browse cdp 9222 # bare port — auto-discovers via /json/version
404
+
browse cdp ws://127.0.0.1:9222/devtools/browser/... # full WebSocket URL
The `cdp`command connects directly to any Chrome DevTools Protocol target and streams events. It does **not** use the daemon — it's a standalone, long-running process. Press Ctrl+C to stop. Default domains: Network, Console, Runtime, Log, Page.
0 commit comments