A Visual Studio Code extension that automatically clicks "Continue" buttons in AI chat panels like TRAE or Builder.
- Status Bar Toggle: Easy on/off control with visual indicator
- Automatic Detection: Uses MutationObserver to detect new Continue buttons
- Persistent Operation: Works continuously without needing DevTools
- Safe Operation: Only clicks buttons with "Continue" text in
.agent-error-wrapelements
- Toggle Button: Click the status bar item
$(debug-continue) Auto Continue: OFF/ONto enable/disable - Background Monitoring: When enabled, creates a hidden webview that monitors the DOM
- Smart Detection: Looks for
.agent-error-wrap .icube-alert-actionelements with "Continue" text - Auto-Click: Automatically clicks detected Continue buttons
- Copy this extension folder to your VS Code extensions directory
- Reload VS Code
- The extension will activate automatically
- Look for the status bar item on the right side:
$(debug-continue) Auto Continue: OFF - Click it to toggle:
$(debug-continue) Auto Continue: ON - The extension will now automatically click Continue buttons in AI chat panels
- Click again to disable:
$(debug-continue) Auto Continue: OFF
- Target Elements:
.agent-error-wrap .icube-alert-actionbuttons containing "Continue" text - Detection Method: MutationObserver + periodic backup checks
- Performance: Minimal impact, only activates when DOM changes occur
- Cleanup: Properly disposes resources when disabled
The extension consists of:
package.json: Extension manifest and metadataextension.js: Main extension logic with status bar and webview management- Embedded HTML/JS: MutationObserver script for DOM monitoring
- VS Code 1.74.0 or higher
- No additional dependencies required