Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The StorageManager
interface of the the Storage API provides an interface for managing persistance permissions and estimating available storage. You can get a reference to this interface using either navigator.storage
or WorkerNavigator.storage
.
StorageManager.estimate()
Secure context
StorageEstimate
object containing usage and quota numbers for your origin.StorageManager.persist()
Secure context
Promise
that resolves to true
if the user agent is able to persist your site's storage.StorageManager.persisted()
Secure context
Promise
that resolves to true
if persistence has already been granted for your site's storage.Specification | Status | Comment |
---|---|---|
Storage The definition of 'StorageManger' in that specification. | Living Standard | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 48 | ? | 57
|
? | Yes | ? |
estimate |
52 | ? | 51 | ? | Yes | ? |
persist |
52
|
? | 55 | ? | Yes | ? |
persisted |
52
|
? | 55 | ? | Yes | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 48 | 48 | ? | 51
|
Yes | ? | ? |
estimate |
52 | 52 | ? | 51 | Yes | ? | ? |
persist |
52
|
52
|
? | 55 | Yes | ? | ? |
persisted |
52
|
52
|
? | 55 | Yes | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/StorageManager