Skip to content

Instantly share code, notes, and snippets.

@drb
Created May 20, 2015 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drb/53c03fc2b6a119883325 to your computer and use it in GitHub Desktop.
Save drb/53c03fc2b6a119883325 to your computer and use it in GitHub Desktop.
Kuku Kube Cheat Helper
// run in console - inverts colours
setInterval(function(){var els=document.getElementById('box'),o;els=els.getElementsByTagName('span');o=els[0].style.backgroundColor;for (var i=0;i<els.length;i++){var s=els[i].style.backgroundColor;if (s.toString() !== o.toString()) {els[i].style.backgroundColor='white'}};}, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment