How much data can we keep in the browser, so that we can have access to the files again after closing / reopening the browser?
LocalStorage
seems to allow ~ 5 or 10 MB (depending on the browser).
Other systems might be available (such as IndexedDB
), as detailed here, but it seems quite complex.
Question: is there a simple-to-use technique (working at least for Chrome+Firefox, or even better if totally cross-browser, and both mobile and desktop) allowing to store more than 100MB (up to 500MB)?
Use-case: a website allowing to play piano with high quality samples (let's say 150 MB audio samples), and prevent to have to re-download the data each time we open the page.
PS: I'm preferably looking for a solution not requiring to install an extension or a browser plugin.