I am developing an extension for Chrome, and by accident I deleted the unpacked extension and reloaded it without making a copy of the data (i.e. data saved in local storage with chrome.storage.local.set()
). Is my data gone forever?
Asked
Active
Viewed 1,400 times
1

BTEVC
- 151
- 1
- 10
-
1That's not Local Storage. Each extension has its own storage: https://stackoverflow.com/q/24279495 If you don't see it in your nested AppData folder, it was probably deleted when the extension was deleted – CertainPerformance Jan 16 '20 at 03:25
1 Answers
1
I'm afraid it is. Part of the process of removing an extension is deleting all its storage footprints.

Traveling Tech Guy
- 27,194
- 23
- 111
- 159