Skip to content

Instantly share code, notes, and snippets.

@gardner
Created April 1, 2016 18:53
Show Gist options
  • Save gardner/7bc0eb2139423bc010fdd802c21e7f44 to your computer and use it in GitHub Desktop.
Save gardner/7bc0eb2139423bc010fdd802c21e7f44 to your computer and use it in GitHub Desktop.
auto click grow
window.jQuery || document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"><\/script>');
window.onload=function(){
setInterval(function() {
if ($('button.robin-chat--vote.robin-chat--vote-increase.robin--vote-class--increase.robin--active').text() != 'grow') {
$('#robinVoteWidget > div > button.robin-chat--vote.robin-chat--vote-increase.robin--vote-class--increase > span.robin-chat--vote-label').click();
console.log('click click')
}
} , 60000);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment