Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
localStorage has been in IE since version 8. – DanRedux Mar 12 '12 at 23:48
Which version of IE? – Darin Dimitrov Mar 12 '12 at 23:48
@Darin: 6.0 to 9.0 – Julien Mar 13 '12 at 22:35
@DanRedux: do you have any link? Form what I've found, localStorage can be called from JavaScript to associate data with a domain. I don't see how this can be used in a BHO. Anyway, I'm looking for solutions that works with IE6 to IE9. – Julien Mar 13 '12 at 22:47

1 Answer

I can't fully understand the documentation, but since IE5, there's been a "UserStore" that you can use to store information in IE only.

http://msdn.microsoft.com/en-us/library/ms531424(v=vs.85).aspx

I think it's what you want, but MS has bad documentation.

share|improve this answer
Seems to be used on client side only (see also this question:social.msdn.microsoft.com/Forums/en-US/ieextensiondevelopment/…) – Julien Mar 14 '12 at 0:00
Isn't that what you wanted? If you want server-side you have millions of options.. If you're making an extension you want to use local storage which means client-side. – DanRedux Mar 14 '12 at 0:06
-1 Because you can't understand documentation and yet answer it. That's partial and not well explained answer. Improve your answer then i will undo downvote. – Sarfraz Mar 15 '12 at 7:21
I mean this is available from the HTML page only, not from the BHO – Julien Mar 16 '12 at 21:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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