Skip to content

Instantly share code, notes, and snippets.

View jamiechapman's full-sized avatar
:shipit:

Jamie Chapman jamiechapman

:shipit:
View GitHub Profile
@jamiechapman
jamiechapman / windsurf-auto-continue.js
Created July 5, 2025 23:24 — forked from steipete/windsurf-auto-continue.js
Windsurf Auto Continue press button JS. Windsurf Menu Help -> Toggle Developer Tools -> Paste into Console.
// Windsurf Auto Press Continue v13.2 (with added logging)
(() => {
const SCRIPT_NAME = 'Windsurf Auto Press Continue v13.2 (logged)'; // Updated name for clarity
let intervalId = null, lastClick = 0;
// --- Config ---
const BTN_SELECTORS = 'span[class*="bg-ide-button-secondary-background"]';
const BTN_TEXT_STARTS_WITH = 'continue';
const SIDEBAR_SELECTOR = null;
const COOLDOWN_MS = 3000;