Special Chrome Dimension Levels in Angry BirdsIt was just yesterday we wrote about the Angry Birds for Chrome, and a clever developer has already hacked the game to unlock all levels.

When we say hack, it not something illegal or harmful, just a clever way to unlock all levels including the special Chrome levels called “Chrome Dimension”.

This is possible in Chrome since the game is stored for offline viewing in the Chrome browser cache.

The Web developer Wes Bos manipulated a few values in the saved game and voila, all levels were available. Lets look at how it’s done.

Hack Angry Birds For Chrome For Accessing All Levels:

If you have already played Angry birds on your cell phone and just want to access the new Chrome Levels, you can use this hack to unlock those levels in a jiffy.

Special Chrome Levels in Angry Birds

How Does This Hack Work?

Angry Birds for Chrome uses HTML5’s local storage to store the game data which can be accessed easily and the values can be modified.

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.

Here’s the code that he provided to unlock all the levels:

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

If you want to switch the game back to all levels locked, use this code in the address bar:

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

Load the game in the browser and in the same tab’s address bar, paste the above code and press enter.

Level 4-3 in Angry Birds For Chrome

The game will reload and all the levels will be unlocked. A clever trick for guys who just want to try out the special Chrome levels. Enjoy!