Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create sockets in google chrome extension?

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?

like image 428
Xinus Avatar asked Oct 08 '09 05:10

Xinus


2 Answers

Chrome has an packaged app support for raw socket connections. More general info here. This used to be available to extensions as well but it's not clear if that's still true.

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.

like image 94
kanaka Avatar answered Sep 21 '22 18:09

kanaka


These are not websockets (it's TCP or UDP sockets):

http://developer.chrome.com/apps/socket.html

https://developers.google.com/live/shows/7320022-5001

The second link is a howto for making a web-server in a Chrome app.

like image 20
konsumer Avatar answered Sep 19 '22 18:09

konsumer