I created small hello world extension for google chrome http://code.google.com/chrome/extensions/getstarted.html. I need to use sockets in extension for peer to peer communication using UDP. Is there any firefox Jslib equivalent in google chrome or how we can use other languages in google chrome extension?

I doubt its possible in google chrome, looking at its documentation. ? Are there any other ways to achieve p2p communication in extension?

Thanks

link|improve this question

feedback

3 Answers

It has now been implemented, just thought I'd point it out: http://blog.chromium.org/2009/12/web-sockets-now-available-in-google.html

link|improve this answer
feedback

Chrome's security model won't allow you to establish arbitrary TCP/UDP connections from javascript:

The [WebSockets] protocol is not raw TCP because it needs to provide the browser's "same-origin" security model. (from Chromium Blog: Web sockets)

However, there are a couple of hacks using flash or java applets, see this question.

link|improve this answer
feedback

Chrome has an experimental extension for raw socket connections.

The documentation indicates that only UDP is available for the type when the socket is created. However, recently (Jan 2012) there was a commit adding TCP support.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.