Is there a .NET-accessible (i.e. .NET or COM) library that I can use to programmatically control Firefox? I'm looking for something that is a bit like ShDocVw.dll for IE. Doesn't have to do all that much, basically all I want to be able to do is programmatically add a bookmark.
Asked
Active
Viewed 2,613 times
1 Answers
5
the firefox bookmarks are stored within the Places.sqlite file within the users firefox profile folder.
There is an ado.net c# to sqlite connector available at http://sourceforge.net/projects/sqlite-dotnet2/.
edit:
Very good tutorial:
http://web.archive.org/web/20100208133236/http://www.mikeduncan.com/sqlite-on-dotnet-in-3-mins/

KyleSolo
- 55
- 1
- 7

Phil Rykoff
- 11,999
- 3
- 39
- 63
-
Interesting tutorial! Thanks for that info, I'll check it out tomorrow! – PhilPursglove Mar 07 '10 at 20:45