Skip to content

Instantly share code, notes, and snippets.

@alexcmgit
Created May 10, 2021 17:14
Show Gist options
  • Save alexcmgit/613a34120c64ade9646c41f12f2cbb84 to your computer and use it in GitHub Desktop.
Save alexcmgit/613a34120c64ade9646c41f12f2cbb84 to your computer and use it in GitHub Desktop.
window.onbeforeunload = (e) => {
return "Dude, are you sure you want to leave? Think of the kittens!";
}
const bts = document.querySelectorAll("[aria-label='Delete']")
const b = [...bts];
for(let bt of b) {
try {
bt.click();
await new Promise((res) => setTimeout(res, 100));
} catch(e) {
console.log(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment