How To Easily Unlock And Re-lock All Level Of Angry Birds Game

Hi! Everyone, hope you all are fine.
Today in this post I will tell you how you can unlock all the level of Angry Birds game. Yesterday I told you how you can play Angry Birds for free. And you all must have started playing it and might be few of you had already completed and unlocked all the level of it. No, you haven’t completed till yet and want to play game from anywhere in the middle instead of completing each level one by one?

Ok then, let me give you a very simple trick by which you can unlock and relock all the level of Angry Birds. Open Angry Birds game in your browser, copy-past the below code in that page’s address bar and press Enter, now your page/game will reload and you will see all the level are unlocked.

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

Angry Birds - All Level unlocked

If you want to relock all the level (except 1st level) so copy-past the below code

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

Angry Birds - All Level locked (except 1st level)

And if you want to lock all the level (including 1st level) so copy-past this below code

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

Angry Birds - All Level locked (including 1st level)

If you locked all level (including 1st level) then you may not able to play this game and if you want to unlock just use 1st or 2nd code and you again able to play.

Note: – Make sure that what is there only that gets copied and more or less apart from those code or it may not work.

4 thoughts on “How To Easily Unlock And Re-lock All Level Of Angry Birds Game”

  1. it is not working in my chrome…. when i copies it in my address bar thn it come srched by my default search engine!! 🙁

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.