Unlock Angry Birds All Levels With JavaScript
@thebigk
•
Oct 25, 2024
Oct 25, 2024
1.2K
Angry birds web version was launched recently and the JavaScript experts have launched a quick hack to unlock all Angry Bird levels.
To unlock all levels in Angry Birds Web use:
javascript: var i = 0; while (i<=69) { localStorage.setItem(âlevel_star_â+i,â3â²); i++; } window.location.reload(); To revert use:
javascript: var i = 1; while (i<=69) { localStorage.setItem(âlevel_star_â+i,â-1â²); i++; } window.location.reload();Via: #-Link-Snipped-#