I have written some application in c# .net and I want it to be able be called from Firefox like an add-on. Add some button in Firefox menu and when it pressed my application is launched.

Is it possible to be done ? If so can you refer me to some tutorial how those things are done .

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

.NET cannot be used to write extensions for FireFox. You could build an extension which runs your .NET application as a separate process.

link|improve this answer
What platform i should use in my case ? – Night Walker Nov 7 '10 at 9:11
@Night Walker: Firefox only supports one platform for its extensions - XUL. XUL uses XML and JavaScript to implement the extension. As Darin says, the extension can run your .NET app as a separate process. But beware that this will be less portable. – Stefan Monov Nov 7 '10 at 10:01
feedback

Your Answer

 
or
required, but never shown

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