I'm coding a web extension for FF. Currently I'm using the same page as the popup (browser_action) and the background:
"background": {
"page": "popup/index.html"
},
"browser_action": {
"default_icon": "icons/index32.png",
"default_title": "Indexer",
"default_popup": "popup/index.html"
},
but as far as I can tell, the page reloads every time I open the popup, and overall, the behavior of the JS loaded by the page is weird.
Is there any way to load the page once, and only show (and not reload) it each time the user opens the popup?
Thanks a lot guys!