Skip to content

Instantly share code, notes, and snippets.

@markjarzynski
Last active August 29, 2015 14:18
Show Gist options
  • Save markjarzynski/8dbe7f4d2fe62cec94e9 to your computer and use it in GitHub Desktop.
Save markjarzynski/8dbe7f4d2fe62cec94e9 to your computer and use it in GitHub Desktop.
Kuku Kube cheat
// http://www.kuku-kube.com
// http://106.186.25.143/kuku-kube/en-3/
function cheat () {
var x = document.querySelectorAll("#box span");
x[0].click();
for( var i = 1; i < x.length; i++ ) {
if ( x[i].style.backgroundColor != x[0].style.backgroundColor) {
x[i].click();
}
};
requestAnimationFrame( cheat );
}
document.querySelector(".play-btn").click();
cheat();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment