I have a piece of code here that just doesn\'t want to work right as a Chrome Extension.
As far as I can tell, everything works perfectly, except it stops opening p
Probably something to do with a popup blocker or what Brad said. Its easy enough to deal with tho, just use the tabs api....
for (x = 0; x<55; x++){ chrome.tabs.create({url:"nowhere"+x}); }
...55 tiny tabs ;)