A tiny extension for Google Chrome on Mac OS X which adds "Open with Default" to context menu of links. We can open the link wifh Safari or Firefox from Chrome.
This extension use native code to run external application like Safari or Firefox from Chrome. The native code are running as NPAPI plugin like Flash Player in background page. See http://code.google.com/chrome/extensions/trunk/npapi.html for more details.
This extension might be good example how to implement native plugin for Google Chrome extension on Mac OS X. Enjoy!
Open OpenWithDefault.xcodeproj
with Xcode then build.
Enable developer mode on Extensions page on Chrome, then load unpacked extension from Extension
folder.
Select "Packaging" target then build it, you'll get OpenWithDefault.crx in project folder.
This extension uses context menu API which is only enabled in DevChannel. You need to use Chrome from DevChannel.
On XCode, add Google Chrome as a custom executable then use "Build and Run" for debug this extension on "OpenWithDefault" Target, or just select "Google Chrome" Target and build it. You can run Chrome with experimental api.
Use Launch Service to open URL with the default application which user select for opening URL. See Launch Service Reference.
Use this extension AT YOUR OWN RISK, WE MAKE NO WARRANTY.