How to send a message to a Firefox extension using a C# Application?
问题 I have created a Firefox extension and a C# application and I need to send a String to my extension to perform some work I need to send it through an HTTP request like sockets. I have read about nsIServerSocket and having trouble connecting to my C# application Firefox (extension) code: function startServer() { var listener = { onSocketAccepted : function(socket, transport) { input = clientSocket.openInputStream(0, 0, 0); }, onStopListening : function(socket, status){} }; var serverSocket =