Friday, May 20, 2011

Angry Birds Chrome Edition... hack?

Have you tried the chrome edition of Angry Birds yet?

Getting tired of completing all levels to get into the new chrome levels?  Since it's using HTML5, it's possible to update the data using script and here's the lazy approach by hacking the game locally.

In Angry Birds chrome, copy and paste the following script into the address bar and press enter:
javascript:var i=0; while (i<=69) { localStorage.setItem('level_star_'+i,'3'); i++; } window.location.reload();
All levels are having "3 stars", including the new levels (i.e. it's unlocked!)  As you can see, it's using a while-loop to set all levels to have "3 stars" locally.  In the same way, you can set all items to different levels by changing the parameter '3', or you can write your own scripts as well.

Anyway, I encourage you to enjoy the game by beating every levels :)

No comments:

Post a Comment