Angry Birds in Ubuntu using Chromium
The folks over at Rovio, creators of the now famous Angry Birds, have unleashed an HTML5 version of the popular game that�s designed to run in Chrome (or Chromium!) on any operating system.
install Chromium this way in a terminal:
sudo apt-get install chromium-browser
Run the program and follow this link. Yes, this means that you can now play Angry Birds on Ubuntu, and luckily the performance of the game web-ified is still up to scratch.
Rovio currently have native support for Angry Birds on a number of mobile and desktop platforms such as iOS, Android, Windows Mobile, Amazon Kindle, Mac OS X and Windows, but have never supported Linux natively which means Ubuntu users have been left out in the cold till now.
I could coax the game into running under Firefox 4.01. It probably runs in other HTML5 compliant browsers too. At least you need the latest flash plugin installed.
Check it out at chrome.angrybirds.com
1. Open the game using the following url:
http://chrome.angrybirds.com
2. Wait for the game to load.
3. Just paste the following code into the browser address bar:
javascript: var i = 0; while (i<=69) { localStorage.setItem(level_star_+i,3); i++; } window.location.reload();
4. This causes the game to reload and all levels will be playable..
Enjoy!!
If you want to reset the levels (lock them again) copy this line instead:
javascript: var i = 1; while (i<=69) { localStorage.setItem(level_star_+i,-1); i++; } window.location.reload();
Cheat instructions
This little cheat unlocks all the levels - just follow the cheat instructions below:1. Open the game using the following url:
http://chrome.angrybirds.com
2. Wait for the game to load.
3. Just paste the following code into the browser address bar:
javascript: var i = 0; while (i<=69) { localStorage.setItem(level_star_+i,3); i++; } window.location.reload();
4. This causes the game to reload and all levels will be playable..
Enjoy!!
If you want to reset the levels (lock them again) copy this line instead:
javascript: var i = 1; while (i<=69) { localStorage.setItem(level_star_+i,-1); i++; } window.location.reload();