Skip to content

Instantly share code, notes, and snippets.

@perrygovier
Last active March 1, 2023 09:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perrygovier/10297976 to your computer and use it in GitHub Desktop.
Save perrygovier/10297976 to your computer and use it in GitHub Desktop.
var stopit = false;
var tab1 = document.querySelectorAll('.ion-home');
var tab2 = document.querySelectorAll('.ion-heart');
var tab3 = document.querySelectorAll('.ion-gear-b');
function clicky(){
if(stopit)return;
tab2[0].click();
setTimeout(function(){
tab3[0].click();
setTimeout(function(){
tab1[0].click();
setTimeout(function(){
clicky();
},50);
},50);
}, 50);
}
setTimeout(function(){
stopit = true;
}, 1000*60*3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment