remove_breakpoint
Delete a debugger breakpoint by its ID to allow uninterrupted code execution in Chrome DevTools Protocol sessions.
Instructions
Removes a previously set debugger breakpoint by its ID, allowing execution to pass that location uninterrupted. Side effects: modifies debugger state (breakpoint deleted). Prerequisites: requires an active, paused debugger session with the breakpoint ID returned from 'set_breakpoint'. Returns: confirmation of breakpoint removal. Use this to clean up breakpoints or disable debugging at specific locations. Alternatives: 'set_breakpoint' to add new breakpoints, 'resume' to continue execution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| breakpoint_id | Yes | Unique identifier of the breakpoint (returned from set_breakpoint). Constraints: non-empty string matching format from set_breakpoint response. Interactions: must correspond to an active breakpoint or operation will fail. |