Create your own Firefox add-in using Visual Studio

I need to develop an add-in (like a panel) that will control user data using Mozilla Firefox (priority) and other web browsers (Chrome, Safari, etc.).

I already did this using IE, but I also need it for Mozilla Firefox. Any idea, if possible, and how to integrate the Firefox add-in with the ability to interact with my C # code using VS 2005 or 2008?

+3
source share
1 answer

The bad news for you is that Mozilla Firefox plugins cannot be developed in .NET managed code, but the good news is that they can be easily developed using XML, Javascript, and CSS. There is a comprehensive tutorial on creating a FireFox panel here: http://www.borngeek.com/firefox/toolbar-tutorial/

Chrome plugins are created using the same combination of XML / HTML, Javascript, and CSS, but may require browser APIs that do not guarantee compatibility with FrieFox APIs. I would suggest starting with the documentation for Chrome Labs .

+3
source

Source: https://habr.com/ru/post/1745269/


All Articles