Did you know? You can create buttons in your console logs (kind of): just use a getter
console.log({ get button() { /* run action here */ return 'ok'; } })
Also handy for snippets, if they need to run interruptible actions, like in the video below
7 months ago