Click here to Skip to main content
15,883,891 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to create firefox plugin in VB.Net/ C#.Net?

Please, solve and give me example in my mail : sanjubaba24@gmail.com

Thanks in advance.
Posted

The architecture of FireFox extensions is quite far from .NET. Extensions do not hook up any native CPU code (not mentioning .NET managed code). They are hosted by FireFox itself; it makes them platform-independent and safe — any uncontrolled access to OS is excluded.

The developed extension is a zipped directory (zip file is renamed as *.xpi file) which contains XML-based files such as XUL and RDF, a also DTD, Java and manifest files.

Please, Read The Following Manual: https://developer.mozilla.org/en/Building_an_Extension[^].

—SA
 
Share this answer
 
Comments
sanjubaba24 13-May-11 2:47am    
Thanks.
Sergey Alexandrovich Kryukov 13-May-11 4:34am    
You're welcome.
If you think it's helpful information, will you consider formally accepting this answer (green button)?
--SA
Abhinav S 13-May-11 4:32am    
Good answer. My 5.
Sergey Alexandrovich Kryukov 13-May-11 4:34am    
Thank you, Abhinav.
--SA
AFAIK, You cannot do this. Languages used in Firefox extensions are Javascript and C++.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 13-May-11 1:08am    
Basically, you're right, but not exactly. No C++.

Please see my answer.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900