vote up 9 vote down star
3

What is the best way to write a Safari extension? I've written a couple XUL extensions for Firefox, and now I'd like to write versions of them for Safari. Is there a way that would allow you to add buttons or forms to the browser UI, since this is not possible with an Input manager or Service menu?

flag

4 Answers

vote up 11 vote down check

Safari plugin development is non-trivial. The interface is written in Objective-C, and most of it is not even part of WebKit (so you can't see the source), but there's machinery to inspect and patch the object hierarchy of a running application. It requires understanding of Cocoa and Objective-C, but no lower.

Here's a high level overview I had in my bookmarks of the process http://livingcode.org/2006/tab-dumping-in-safari. It goes over creating Safari plugins using Python with working (probably outdated) code. Instead of Python you can use anything that has Objective-C bindings.

There are two major parts to it:

Reading the links above will give you the scope of the project.

link|flag
Just to clarify, input managers ≠ Safari plugins. Safari does have a plug-in architecture, it's just not what developers expect compared to Firefox. This answer provides great advice for the input manager approach. My answer below has more information on "true" plugins, even though that approach is unlikely to meet your specific needs in this case. – Quinn Taylor Aug 10 at 19:27
Now I want to make a safari plugin with simbl , and I have read the Armchair Guide To Cocoa Reverse Engineering. but when implement the method - (void)load; how to use the plugin to get the safari DOM object ,just like PIC or Flash URL ? Thank you very much ! – jin Oct 23 at 6:51
vote up 3 vote down

Nobody seems to have even mentioned the fact that Safari actually does support true plugins, which input manager hacks most definitely are not.

"WebKit Plug-In Programming Topics" http://developer.apple.com/documentation/InternetWeb/Conceptual/WebKit_PluginProgTopic/

This is how things like support for PDF and Flash content are implemented. Take a peek inside your /Library/Internet Plug-ins/ directory to see examples.

Of course, there are inherent limitations, and you may not be able to accomplish what you hope to as far as UI modification. Safari plug-ins can't do all the things that Input Manager hacks can, but they will work in WebKit anywhere, and in future versions of the OS. Note: Safari is 64-bit by default on Snow Leopard, so no Input Managers work. I'm missing Safari AdBlock already... :-( I would love to see it rewritten as a bonafide plugin.

link|flag
vote up 1 vote down

Also, to note - Apple has stated that InputManagers are being severely limited as of Leopard and will not run in 64-bit applications per Apple Leopard Release Notes. This is especially interesting considering most applications will be 64-bit in Snow Leopard (including presumably Safari). Apple is definitely trying to obliterate InputManager as a vector to overriding and extending functionality. Safari desperately needs an extension mechanism.

link|flag
vote up 4 vote down

Is there a way that would allow you to add buttons or forms to the browser UI, since this is not possible with an Input manager or Service menu?

Actually, with an InputManager, it would be possible. SIMBL, the common technique for Safari extensions, is simply a wrapper around InputManagers — it stands for Smart Input Manager Bundle Loader. You can add stuff to the menu bar, to the toolbar, dialogs, anywhere, simply by extending Safari's existing classes.

That said, writing extensions for Safari is not only non-trivial, as æon said, but also completely unsupported. There are some relatively popular ones out there, like Inquisitor (recently acquired by Yahoo!) and Google's Gears, but for the most part, it's very unlike Firefox's extensions, which are an officially-supported, widely used technique.

You also definitely want to take into consideration the special limitations of InputManagers on Leopard.

link|flag

Your Answer

Get an OpenID
or

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