We are currently saving notes in chrome storage attached to a 'data' key. This creates a single object that we get back which contains all of our notes. While the app is allowed to store 100kb of data total, the limit on a single object is 8kb. This means we are only able to utilize 8% of available store. Refactor how we are storing and retrieving notes so that everything is not attached to a single key.
http://stackoverflow.com/questions/18150774/get-all-keys-from-chrome-storage
We are currently saving notes in chrome storage attached to a 'data' key. This creates a single object that we get back which contains all of our notes. While the app is allowed to store 100kb of data total, the limit on a single object is 8kb. This means we are only able to utilize 8% of available store. Refactor how we are storing and retrieving notes so that everything is not attached to a single key.
http://stackoverflow.com/questions/18150774/get-all-keys-from-chrome-storage