5/13/11

Unlock All Angry Birds Levels With A Simple JavaScript Code - Google Chrome



Rovio has just put online the web version of Angry Birds so users of computers could play the game via any web browser. A few hours later, Angry Birds for Chrome has been hacked by Wes Bos to grant players a full access to all levels.


The hack is simply a Javascript code that allows to unlock all Angry Birds levels. Via your Chrome web browser, visit this link to install the game, then while playing Angry Birds, type the following code in 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 now unlocked. To lock levels, simply use this snippet of code:

javascript: var i = 1; while (i<=69) { localStorage.setItem('level_star_'+i,'-1'); i++; } window.location.reload();

0 Responses to “Unlock All Angry Birds Levels With A Simple JavaScript Code - Google Chrome”

Post a Comment