I want to develop a Safari plugin using xCode, and I want to access bookmarks. What API should I use?
And, since I'm asking, are there any tutorials out there for plugin dev under Safari?
I want to develop a Safari plugin using xCode, and I want to access bookmarks. What API should I use?
And, since I'm asking, are there any tutorials out there for plugin dev under Safari?
There is no documented or Apple-supported way to create plug-ins for Safari.
That hasn't stopped many people creating add-ons, as you can see by browsing through Pimp My Safari.
Many of the plug-ins use SIMBL to load themselves into Safari, after which you can mess around with Safari's insides to do whatever you want. See the Armchair Guide To Cocoa Reverse Engineering.
One thing is for sure - it won't be a walk in the park!
Good luck =]
Safari plugins are well-supported, both for the Netscape-style NSAPI and the 'native' Cocoa plugins. There are dozens, if not hundreds, of official Safari plugins.
However, not everything you might want to do is possible through plugins. I'm not clear if accessing bookmarks is possible.
There are lots of other docs on Safari plugins at the Safari Dev Center and Reference Library, including WebKit Plug-In Programming Topics.
Since you want to write a plugin for Safari, you might also be interested in reading about developing plugins for webkit.
Safari 5 allows to create extensions in a similar way of what Google Chrome allows. See Safari Extensions Development Guide: About Safari Extensions.
I searched the Safari Extension Development guide, and I couldnot find any descriptions related with the bookmark operation. So it is bad for us to create some extension to operate the bookmark.
Anyone knows how? Thank you!