get_custom_events
Retrieve unhandled Chrome DevTools Protocol events from domains without specialized listeners. Filter by method name and limit results to monitor Target, Debugger, or custom domain activity during browser debugging.
Instructions
EXPERIMENTAL: Retrieves unhandled CDP events from domains not covered by specialized listeners (network, console, etc.). Side effects: none (read-only cache access). Prerequisites: requires active Chrome connection with send_cdp_command or custom domain listeners active. Returns: JSON array of custom events with method, parameters, and timestamp. Use this to see Target, Debugger, or other domain events. Alternatives: domain-specific listeners (get_network_logs, get_console_logs).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter_method | No | Filter events by CDP method name (case-sensitive). Constraints: string matching format 'Domain.eventName'. Interactions: when omitted, returns all events. Defaults to: None (no filtering). | |
| limit | Yes | Maximum number of events to return. Constraints: positive integer (0 = unlimited, clamped to cache size). Interactions: limits result set size. Defaults to: 100. |