Hey I currently work on a chrome-extension myself and running into following error for now reaseon.
IO error: .../MANIFEST-000001: Unable to create sequential file (ChromeMethodBFE: 7::NewSequentialFile::4)
I use chrome`s local storage to save user configuration. I got rid of the original code who caused it, but I noticed that any kind of accessing the googles chrome local storage results in the error too. Like that:
chrome.storage.local.get(null, function(data) {
if(chrome.runtime.lastError) {
console.error(chrome.runtime.lastError);
}else {
console.log(data);
}
});
This error occured when I tried out my "delete" method which kinda works but apperently works too good.
As Google does not provide any kind of documentation regarding this error-code, I dont know what to do.
When you encountered this error, you likely managed to delete the entire Chrome-Extension folder. Congratulations.
It aint that bad, you can still fix it:
What happened?