Hi everyone,
is there a way to access the application panel objects (localStorage, indexedDB, etc.) of an extension without activating the extension itself?
Let me give you a practical example: I have an extension that resets some localStorage variables only once at the beginning of the new day or in any case if it realizes that the last day in which the extension was active is before today.
So if I open the browser and that extension is enabled the values of those variables have flown away.
If the extension is disabled, as soon as I re-enable it I still lose these values.
So is there a method to freeze the execution of the extension while having access to the storages panel?
Some command line like chrome.exe -freeze-ext-id="xxxxxxxxxxxx" ?
TIA