Found this site the other day. You click on a DIV (button) and it increments getting you points.
http://clickingbad.nullism.com/
I thought to myself I'll just inject jQuery and write a loop to click for me use the Chrome developer console and run code similar to the following:
for (var i=0;i<10;i++)
{
$('#make_btn').click();
}
However it doesn't seem to be working like I'd think. It will at like it increments the first hit, but past that nothing. Also you'll see when you acutally use your mouse to click, it floats the points given. Programatically clicking does not. What's going on here?