StorageArea.set()
Stores one or more items in the storage area or updates stored items.
When you store or update a value using this API, the storage.onChanged
event fires.
Note that when storing items in the sync
storage area, the browser enforces quotas on the amount of data each extension can store. See Storage quotas for sync data.
This is an asynchronous function that returns a Promise
.
Syntax
let settingItem = browser.storage.<storageType>.set(
keys // object
)
Where <storageType>
is one of the writable storage types — storage.local
, storage.session
, or storage.sync
.
Parameters
keys
-
An object containing one or more key/value pairs to be stored. If an item is in storage, its value is updated.
Values can be primitive (such as a number, boolean, or string),
Array
, orObject
types.It's generally not possible to store other types, such as
Function
,Date
,RegExp
,Set
,Map
,ArrayBuffer
, and so on. Some unsupported types restore as an empty object, while others causeset()
to throw an error. The behavior is browser-specific.
Note:
If you want to remove keys from storage, use storage.storageArea.remove
. If you want to overwrite a value with a void value, use null
, i.e., key: null
.
Return value
A Promise
that is fulfilled with no arguments if the operation succeeds. If the operation fails, the promise is rejected with an error message.
Examples
function setItem() {
console.log("OK");
}
function gotKitten(item) {
console.log(`${item.kitten.name} has ${item.kitten.eyeCount} eyes`);
}
function gotMonster(item) {
console.log(`${item.monster.name} has ${item.monster.eyeCount} eyes`);
}
function onError(error) {
console.log(error);
}
// define 2 objects
let monster = {
name: "Kraken",
tentacles: true,
eyeCount: 10,
};
let kitten = {
name: "Moggy",
tentacles: false,
eyeCount: 2,
};
// store the objects
browser.storage.local.set({ kitten, monster }).then(setItem, onError);
browser.storage.local.get("kitten").then(gotKitten, onError);
browser.storage.local.get("monster").then(gotMonster, onError);
Browser compatibility
BCD tables only load in the browser
Note:
This API is based on Chromium's chrome.storage
API. This documentation is derived from storage.json
in the Chromium code.