the boy with the broken stomach

Unlock all Chrome levels
Sometimes cheating isn't bad.


I just found a hack for the Angry Birds current  Chrome version. This will let you unlock all the levels including the special Chrome Levels. Use it in your own risk. This might spoil the fun. But why not just take a peak on those surprises just a bit.

REPOST from http://wesbos.com/all-levels-html5-angry-birds/:

Just about an hour ago Rovio and Chrome released Angry Birds for Chrome. As a JavaScript / HTML5 guy, I quickly jumped into the code to see how things worked.

I was quickly able to find a hack that gave me access to all the levels, even the special Chrome levels! So to get access to all levels in Chrome Angry Birds, just copy and paste the following line into your browser’s address bar.
javascript: var i = 0; while (i<=69) { localStorage.setItem('level_star_'+i,'3'); i++; } window.location.reload();
To set all levels to locked, simply copy and paste this into your address bar:
javascript: var i = 1; while (i<=69) { localStorage.setItem('level_star_'+i,'-1'); i++; } window.location.reload()
In the talk Rovio did at Google IO, they mentioned they were using HTML5′s LocalStorage. If you open up Web Inspector in chrome, you’ll see they are keeping track of your score and stars with localstorage. Lucky for us, that means we can use setItem() set all 70 levels to 3 and get access to them all.

Comments
Facebook
Google +
Reactions

No comments :

Post a Comment