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();
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();
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();
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.
Relocking levels script not working for me on chrome, sorry.
Seems they have made some changes on there game code because of which it is not working now.. 🙁
it is not working in my chrome…. when i copies it in my address bar thn it come srched by my default search engine!! 🙁
Sorry but Google has disabled using JavaScript from address bar.. This may help you: https://jajodia-saket.sjbn.co/2012/03/how-to-execute-javascript-in-google-chrome/