Tagged Questions
2
votes
1answer
490 views
Invoke a java method from a Thunderbird Extension
I want to make a thunderbird extension. So the first question is where to get started. Can you point me to some sample extensions in which I can plug in my code? This will significantly reduce the ...
1
vote
4answers
1k views
Build firefox extension (XPI package) using Java servlets
I am trying to build a xpi file using Java servlet.
If I return the xpi as a zip using the following code in the servlet -
response.setContentType("application/zip");
...