Created
May 10, 2021 17:14
-
-
Save alexcmgit/613a34120c64ade9646c41f12f2cbb84 to your computer and use it in GitHub Desktop.
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
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