Currently, the extension writes quite a lot of logs and saves them to the chrome.storage.
The reasoning for that is that the service worker lives for a short time and it's hard to troubleshoot issues because of that, console.log is lost when the service worker dies.
On the other hand, using storage for storing logs is not ideal by itself and we'd better avoid it.
Proposed solution
Introduce an option to enable "Debug-level logging" (via the context menu, same way we do it with exporting logs)
Do not write logs to the storage unless this option is enabled.
Issue Details
Currently, the extension writes quite a lot of logs and saves them to the chrome.storage.
The reasoning for that is that the service worker lives for a short time and it's hard to troubleshoot issues because of that, console.log is lost when the service worker dies.
On the other hand, using storage for storing logs is not ideal by itself and we'd better avoid it.
Proposed solution
Alternative solution
No response