Designing some extensions that will continuously update a dataset that is used to render additional information on webpages.

link|improve this question
At least for Mozilla, you probably don't want to be using localStorage. – sdwilsh Aug 16 '10 at 21:07
feedback

1 Answer

up vote 1 down vote accepted

This isn't standardized, but a Chrome extension is limited to 5 MB unless you ask for extra space: http://code.google.com/chrome/extensions/dev/manifest.html#permissions

You could use this as a rough guide to see if the problem you were trying to solve is appropriate for localStorage. If it's a lot less than 5MB, you're probably okay (though note many browsers don't have full support yet), but if it's more, it's probably the wrong solution.

link|improve this answer
Excellent -- thanks! – Jim Brock Aug 18 '10 at 5:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.