I have a chrome webstore app where I'm using appcache to load resources from cache. I'm already using localStorage to have data available offline.
The problem with making the app work offline is that if I reload the page (while offline), the browser checks for the manifest and since it's not able to reach to the manifest uri, I get an error in the console. That's it. Nothing happens beyond this point. The page doesn't render anything.
I'm not sure if there is way around this (to stop the browser from checking for manifest on page reload). In any case, I'm wondering - is this the only way to have your assets cached and available offline. Data is not an issue; but without the assets (mostly JS) things don't move an inch.
Would be glad if anyone could advise / point me in the right direction / approach to have a fully functional offline app even on page reload / refresh.