This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//<script> | |
function clearBlock(el) { | |
const node = el.parentElement.parentElement; | |
node.innerHTML = ''; | |
return node; | |
} | |
const SELECTOR = 'code:not([super-embed-seen])'; | |
function setupEmbeds() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pools": [ <lootpool> ... ] // Every pool is queried by the table the number of times specified in "rolls" | |
} | |
------------- | |
<lootpool> == { | |
"name": <autogenerated for vanilla pools | table-unique name for this pool> | |
"conditions": [ <lootcondition> ... ], | |
"rolls": <randomvaluerange> |