I’m trying to build a Chrome extension that will have a heavy use of data and images.
What are my options when it comes to storing the data?
I’m hoping that I have some kind of SQL option (SQLite).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could go for base64 encoded images stored in a web SQL database. With the help of a canvas in javascript you can easily retrieve and manipulate the image data.
edit
It seems like Web SQL is becoming obsolete. Use IndexedDB instead!