Is it possible to read and write to a local sqlite file from a chrome-packaged application? I am currently reading and writing to json a file with application data that is locally stored on the hard drive, but I also want to be able to do this using the sqlite database. I need it to be local and not on disk, since I will interact with it from other (non-chrome) processes. And even loading a file from disk (using the sync file system instead of the file system), I have no idea how to access the sqlite file
source share