Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jowdyboy/d2ad40f87d47e226f2b94ad5aec1e399 to your computer and use it in GitHub Desktop.
Save jowdyboy/d2ad40f87d47e226f2b94ad5aec1e399 to your computer and use it in GitHub Desktop.
Array.from(document.querySelectorAll('button[aria-label*="Clip"]')).forEach((button, index) => {
setTimeout(() => {
button.click();
}, index * 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment