Hi,
I want to use chrome.storage.local api to store some intermediate state which could be very large in size.
I was trying to test it on developer command line for my extension. Some things do not work.
1. chrome.storage.local.set() works.
2. .get() works for a specific key.
Does not work for "null" key as per the documentation.
3. chrome.storage.local.clear() does not work. Storage size remains unchanged and I can still read the data with a specific key. But .remove() works.
Since clear() does not work and get() does not work with a null key, I can see that my local storage is non empty but don't know what is occupying it.
How can this be made to work?
-Methos