Is your feature request related to a problem? Please describe.
I am working on a chrome extension app (using manifest V3). This app has a background service. I want to access the same database (shared) between the foreground app of the extension and the background service.
The problem
The current implementation of shared web database uses the Worker and SharedWorker classes. Those do not exist in the context of chrome extension background service.
Can this even work
The indexedDB is shared between the extension tab and the background service. So it should be possible for both to read/write on the same database.