Last active
September 9, 2019 13:31
-
-
Save gkucmierz/dbdabc13edd38b6f9af533d6ac4826c0 to your computer and use it in GitHub Desktop.
kraken.com - remove old addresses
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
const actions = [ | |
() => document.querySelector('button[name=delete]').click(), | |
() => document.querySelector('button.delete-address').click(), | |
() => document.querySelector('button.back').click() | |
]; | |
let i = 0; | |
setInterval(() => actions[(i++)%actions.length](), 1e3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment