I have stored a colour
value in my firefox extension using this code
function saveOptions(e) {
browser.storage.sync.set({
colour: document.querySelector("#colour").value
});
e.preventDefault();
}
This works fine but to retest the extension I want to completely remove all the data previously set by the extension and then wants to freshly test the extension.How can we remove stored values in firefox extension?
EDIT:
I am following this project and delete All using inspect>Storage>Extension Storage
does not work.