i am creating my first chrome application (browser action). i believe that background pages should be executing all the times in the background. For example if i write something like
window.setTimeout(getFeed, 30000);
This method should automatically be called every 30 seconds and refresh the feed data. But it seems that the method is only executed if i open the popup page of extension by clicking on extension's icon in the browser. Is it the desired behavior or am i missing something here.