The issue has been closed
I tried out a non working branch of RH and I need to clear the extention storage.
I would like for one of 2 things
- A button to clear all.
- when disabling a feature it should clear the storage for the feature.

I've long thought of a "service" dropdown in the options for this and options export, but we could just list them after the features list.
The first item this should be super easy to implement:
<h2>Debugging</h2>
(... Checkbox: Log features ...)
<button type="button" id="clear-cache">Clear cache</button>
async function clickHandler(event) {
await cache.clear();
event.target.disabled = true;
event.target.textContent = 'Cache cleared';
}
posted by fregante about 5 years ago
posted by fregante about 5 years ago 
posted by fregante about 5 years ago 
@fregante thanks!
Is clearing on disable still an option? Or you don't see the need?
posted by yakov116 about 5 years ago
It sounds like a good idea, but I don't think it's worth the trouble. I'd have to add yet another method on the cache (to get/delete more than one at once) and it's not something that happens that frequently. If your intention is to flush the cache, now there's a button.
There are some more ideas about cache behavior during development, have a look here: https://github.com/fregante/webext-storage-cache/issues/3
posted by fregante about 5 years ago