Use this tag for questions about the storage Mozilla Browser Extension. This property enables extensions to store and retrieve data, and listen for changes to stored items. The storage system is based on the Web Storage API.
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/storage
storage.StorageArea.get()
Retrieves one or more items from the storage area.
storage.StorageArea.getBytesInUse()
Gets the amount of storage space (in bytes) used one or more items being stored in the storage area.
storage.StorageArea.set()
Stores one or more items in the storage area. If the item already exists, its value will be updated. When you set a value, the storage.onChanged event will fire.
storage.StorageArea.remove()
Removes one or more items from the storage area.
storage.StorageArea.clear()
Removes all items from the storage area.