StorageArea.getBytesInUse()
Gets the amount of storage space, in bytes, used one or more items being stored in the storage area.
This function only exists in browser.storage.sync It does not exist in browser.storage.local See https://bugzil.la/1385832
This is an asynchronous function that returns a Promise
.
Parameters
-
keys
-
A key (string) or keys (an array of strings) to identify the item(s) whose storage space you want to retrieve. If an empty array is passed in, 0 will be returned. If you pass null
or undefined
here, the function will return the space used by the entire storage area.
Return value
A Promise
that will be fulfilled with an integer, bytesUsed
, representing the storage space used by the objects that were specified in keys
. If the operation failed, the promise will be rejected with an error message.
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
getBytesInUse |
Yes |
14 |
78Only supported by the sync storage area.
|
? |
33 |
14 |
? |
? |
No |
? |
15 |
? |