Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Newbie question - I have never created a chrome plugin before this. Nor am I a programmer. But attempting to create a plugin which will have folders, sub-folders, (plain-text) notes and bookmarks.. I think its doable.

So what is the best way to store all this data? Can I just store it in chrome.storage? I saw another plugin storing 'NOTES' data using sql. What is the standard practice? How/where should I store all this data (about folders, sub-folders, notes & URL bookmarks)?
Posted

1 solution

Chrome storage would be the default, and can be used to sync information between computers for a logged in user. https://developer.chrome.com/extensions/storage[^]Bear in mind too that chrome storage does have data limits, I think 5MB for local storage and 100KB for sync storage.

Aside from that, i think you're looking at needing something you can access with an API to store data, maybe in Google Drive, or using an App Engine backend, or Parse.com. perhaps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900