1

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 .

Azhar
  • 20,500
  • 38
  • 146
  • 211
Night Walker
  • 20,638
  • 52
  • 151
  • 228

1 Answers1

1

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

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
  • What platform i should use in my case ? – Night Walker Nov 07 '10 at 09: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 07 '10 at 10:01