Unlock All Levels Including Chrome Exclusive Levels in Chrome Angry Birds

In our earlier post, we covered the news about the release of the popular game Angry Birds HTML5 version that’s designed to run in Chrome (or Chromium) on any operating system. The game is very addictive and is already very popular on mobile phones and tablets.

Chrome Angry Birds

The survival of the Angry Birds is at stake. Dish out revenge on the green pigs who stole the Birds’ eggs. Use the unique destructive powers of the Angry Birds to lay waste to the pigs’ fortified castles. Angry Birds features hours of gameplay, challenging physics-based castle demolition, and lots of replay value. Each of the 70 levels requires logic, skill, and brute force to crush the enemy.

Now, some of the levels of Angry Birds might be very tricky. You may tear your hair apart to solve them just because you won’t be able to advance to the next level. Here’s a simple trick that will save your hair and agony!

Chrome Angry Birds: All levels unlocked!

Thanks to Wesbos who found this hack that will give you access to all Angry Bird levels, even the special Chrome levels!

Chrome Angry Birds: Special Chrome levels unlocked!

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();

Note: You have to do the copy-paste job in the tab in which you have opened the game.

If you want to set all levels back to locked (virtually resetting Angry Birds), 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();

Wesbos has also explained in his post, how and why this hack works.

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.

You may also like...