This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
Replies: 1 comment
-
We need to also consider the case of multiple extensions including our SDK not duplicating all the behavior. Ideally one acts as the "primary" and others just contribute to the primary. Also need to think about what to do when the user uninstalls the primary extension. We should keep the data in that case, so another extension can take over as primary or a future extension can pick up where the other left off. To support those, I'd think we need to store things on the file-system. I'm pretty sure extensions are able to do that? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The current data host website tracker is keeping everything in memory for now. I'm planning on moving to local storage soon, but we should discuss two things:
unlimitedStorage
permission but this is very eager and I'd prefer to avoid any potential problems that come with it. A potential solution is to relay the data somewhere (e.g. a "local" or native data host, with disk access).None of these are strictly needed for now but I'd rather start the discussion on them and see where we end up.
Beta Was this translation helpful? Give feedback.
All reactions