Created
December 4, 2015 14:28
-
-
Save adleroliveira/a7a649471600308a9537 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
//Go to http://kuku-kube.com/ paste this on the console and hit enter | |
//Have fun | |
(function(){ | |
$('.play-btn').trigger('click'); | |
var win = function(){ | |
$('#box').find('span').each(function(){ | |
if($(this).data().type=='a'){ | |
$(this).trigger('click'); | |
}; | |
}); | |
}; | |
setInterval(win,10); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment