In my previous post I spoke about the new Angry Birds game Chrome extension version which is available for free for everybody to download. Less than 24h later somebody on the Internet hacked it! In fact, I have just found an interesting hack which will let you unlock all the game levels in just one click! As you know, in order to unlock new Angry Birds levels you have to complete previous levels by killing all the cute pigs. However, if you are kind of impatient and wish to see what the last level is like, for example, the following piece of code will let you play all levels without restrictions.
The hack was discovered on wesbos.com/all-levels-html5-angry-birds/ and it is quite easy to perform on your Google Chrome browser. Here is how the guy at wesbos.com managed to create and find the hack:
“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.”
What follows is the easy procedure to hack Angry Birds for Chrome and unlock all its levels:
- Open Google Chrome.
- Copy and paste the following code to the address bar:
javascript:vari = 0;while(i<=69) { localStorage.setItem('level_star_'+i,'3'); i++; - Hit Enter.
- To lock the levels back, copy and paste this code to the address bar and hit enter:
javascript:vari = 1;while(i<=69) { localStorage.setItem('level_star_'+i,'-1'); i++;
Tags: add-on, Chrome, funny, hack
Related ArticlesLatest Articles
- How to Change and Use Timezone (Tzutil) in Windows 7
- Enhance the Security of your Login Password in Windows 7
- How to Activate Hardware Acceleration and WebGL in Opera 12
- Fix “This PC Doesn’t Meet System Requirements. If You Want to Install Windows 8, You May Have to Upgrade…” Error
2 Comments to “How to Unlock All Angry Birds Levels (Chrome Edition)”
Leave a Comment
Web Talk is best viewed in Firefox.
May 15th, 2011
the above script is not worked for me.. But i tried this in firefox adress bar..
so i tried the below script..it worked cent percent..
so try this..
Unlock All Levels in Angry Birds
Start the game and once its fully loaded, just paste this javascript 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();
and all levels are unlocked….
In case, you want all levels to be locked again (and feel like you are cheating), then use this code:
javascript: var i = 0; while (i<=69) { localStorage.setItem('level_star_'+i,'-1'); i++; } window.location.reload();
This is really a clever trick for those who just want to play the special Chrome only levels. Have fun.
June 13th, 2011
Prasanna78…. this work for me.
Thanks a lot.