Is it feasible to access and manipulate a local sqlite database from within a Chrome packaged app? I am currently able to work with a locally stored JSON file for my app data, but now I also require the functionality to interact with a sqlite database in a similar way. It is essential that the sqlite file remains local and not on a drive so that it can be accessed by other processes (not limited to Chrome). Despite considering loading the file from the drive using sync filesystem rather than filesystem, I am unsure about how to proceed with accessing a sqlite file.