How to write FireFox extension with Visual Studio using C# programming language?

后端 未结 4 1784
别那么骄傲
别那么骄傲 2020-12-05 20:04

I was wondering if it\'s possible to write Firefox extension using .Net Framework? Had anybody such experience in writing Firefox extensions using C# programming language? A

4条回答
  •  我在风中等你
    2020-12-05 20:29

    Assuming you're asking about writing an extension (and not a plugin), the best place to get started is with the info at the Mozilla Dev Center.

    Konamiman is correct: extensions are mostly XUL (an XML grammar) and Javascript, packaged into a ZIP file with the extension .xpi. The various links from the page I linked should answer basic questions, like the one you posted above:

    https://developer.mozilla.org/en/Building_an_Extension

    https://developer.mozilla.org/en/Extension_Frequently_Asked_Questions

提交回复
热议问题