Storing data when using Greasemonkey Storing data when using Greasemonkey database database

Storing data when using Greasemonkey


Well here are the options:

  1. Setup a server to save the datafor the user, and use xhr tocreate/edit/remove data (Google AppEngine (GAE) offers a lot offree storage space).
  2. Use Web Storage which isimplemented in Firefox.
  3. Use Flash Local Storage.
  4. Wait until Web SQL Databaseis implemented in Firefox..
  5. A mixture of all of the above.

If you write a Firefox extension (or in the future you could make a Jetpack and use the Page Mod JEP 107 which is being developed) then you can also read/write/delete files to the HD.


use Lubemonkey found on Gamecore.org,works the same as greasemonkey (even the same commands) but you can store the data in an sqlite database using pure SQL (insert,update, selects , joins etc).