views:

505

answers:

2

Hello, 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

+2  A: 

It is planned to implement a "WebSockets" API on Google Chrome (like most of the HTML5 features), but it is not yet ready.

The W3C WebSockets draft

UVL
+1  A: 

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

Neha Chachra

related questions