Now comes the official Angry Birds 'chrome' version.
Already a code to unlock all the levels, even the special Chrome ones has been released.
Wes Bos specialists in HTML5 and Javascript checked the Rovio code and found a hack that takes advantage of unencrypted local storage values
You can copy and paste the following codes into your Chrome browser’s address bar.
Play free here (you don't need to open the chromo browser)
http://chrome.angrybirds.com
Here’s the line to access every level:
javascript: var i = 0; while (i<=69) { localStorage.setItem(‘level_star_’+i,’3′); i++; } window.location.reload();
A useful code for those of you that don’t want to replay levels. You can copy and paste the following line to lock all the levels again:
javascript: var i = 1; while (i<=69) { localStorage.setItem(‘level_star_’+i,’-1′); i++; } window.location.reload();
The line works whether you’re playing in Chrome, Firefox, Safari or Opera. Rovio did say at Google IOthat they were using HTML5′s LocalStorage so 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.