views:

300

answers:

1

How to start an external application from a Google Chrome Extension?

So basically I have an executable file which does the job when you launch it. I need to be able to start it without a window (it is a console application) and pass the current URL to it in an argument,

+1  A: 

The only way you can do this is through NPAPI plugins: http://code.google.com/chrome/extensions/npapi.html

Mohamed Mansour