Created
October 17, 2019 16:47
-
-
Save liamness/ae60f387c34029ae355ef1d847b2402a 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
/* | |
Trying to use Three's awful online customer service chat widget? | |
Getting kicked because you got distracted / needed a piss? | |
Then this is the code snippet for you | |
*/ | |
setInterval(() => { | |
const button = document.getElementById('session_inv_yes'); | |
if (button) { | |
console.log('Clicked button'); | |
button.click() | |
} | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment