Hi everyone,
I am working on a project that I set some data in the chrome.storage.local but after some time, it just got deleted.
When chrome becomes inactive, does storage deleted?
How can I store the data persistently?
I want to delete it manually.
I use this code snippet to delete the storage
if (tabId in cache) {
delete cache[tabId]
await Storage.set("cache", cache)
}