Unlock All Levels of Angry Birds in Chrome

Author: | Posted in Games, General 7 Comments

Tech 2 Hell already published about, Rovio had announced a HTML5 version of Angry Birds which is now a days popular and is played by a lot of people.

Read more:

Play Angry Birds in Google Chrome, also works in FF and IE

 

Here’s how to unlock all Angry Birds Levels in Chrome with “3 Stars”. Open up your Chrome Angry Birds Game, copy & paste the below code in your address bar and press enter.

javascript: var i = 0; while (i<=69) { localStorage.setItem(‘level_star_’+i,’3’); i++; } window.location.reload();

Go back to game level selection screen and you’d see all levels unlocked.

 

Here’s how to lock all the levels:

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

Credits: Wesbos.com

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.

If you like this post, Share it to your friends. Dont forget to Subscribe our Feeds, Follow us on Twitter and Facebook.

If you like this post, Share it to your friends. Dont forget to Subscribe our Feeds, Follow us on Twitter, Facebook and Pinterest.

Comments
  1. Posted by ajeet
  2. Posted by Vincent Raja
  3. Posted by Jay
  4. Posted by Karthikeyan
    • Posted by Vincent Raja

Add Your Comment

*