Reputation: 1140
I've notice that the chrome store now features some apps with a "runs offline" badge and has a new category for this kind of applications, the app I developed works offline perfectly fine but in the store it isn't displayed as such, is there something I need to add to the manifest or did I missed something in my code to indicate that it can run offline?
Upvotes: 1
Views: 557
Reputation: 48211
You need to set the offline_enabled
property to true in the manifest.
Upvotes: 6