What are the best practices to tore user configuration (which the user can change) in a browser extension for Internet Explorer?
on Chrome/Safari/Opera, I use localStorage. In Firefox, I use the PreferenceManager XPCOM.
I'm not sure what to use for IE:
- registry: seems to work fine for "small" values, Bu I doubt I could use fir for a list of 100+ URLs for example
- local file: in protected mode, the BHO can write to low integrity location, meaning Temporary folders, so it is likely the file will be wiped out at some point
- remote file: privacy issues, and resource issues
I could not find information from Microsoft on the subject.