Created
April 1, 2016 18:53
-
-
Save gardner/7bc0eb2139423bc010fdd802c21e7f44 to your computer and use it in GitHub Desktop.
auto click grow
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.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