Is there a way in google chrome to store more than 4 MB (2 million UTF-16 characters) in HTML5 offline storage?

I created a hosted application for Chrome, and I wonder if there is a way to get more than 4 MB of offline storage in Chrome. I looked at this post http://code.google.com/chrome/webstore/faq.html#faq-app-15 , but one says that you can increase your Chrome offline storage to ~ 260 MB. Is it really possible? if so, is there any example illustrating this possibility?

I also looked at this postoverflow post , and WebSQL DB has no limit. so is WebSQL DB or IndexedDB the only option for a Chrome application to store more content offline?

Thank you for your feedback.

+4
source share
1 answer

Take a look at the quota management API: http://updates.html5rocks.com/2011/11/Quota-Management-API-Fast-Facts

Or, if you are creating a hosted application, you can use the unlimitedStorage permission to exceed the quota limits: http://code.google.com/chrome/apps/docs/developers_guide.html

+3
source

Source: https://habr.com/ru/post/1381589/


All Articles