11

googlechromehttp://code.google.com/chrome/extensions/getstarted.html用に小さなHelloWorld拡張機能を作成しました。UDPを使用したピアツーピア通信の拡張でソケットを使用する必要があります。グーグルクロームに同等のFirefoxJslibはありますか、またはグーグルクローム拡張機能で他の言語を使用する方法はありますか?

そのドキュメントを見て、私はグーグルクロームでその可能性を疑っています。?拡張でp2p通信を実現する他の方法はありますか?

4

2 に答える 2

6

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.

于 2012-02-29T23:15:23.780 に答える
4

これらは websocket ではありません (TCP または UDP ソケットです)。

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

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

2 番目のリンクは、Chrome アプリで Web サーバーを作成するためのハウツーです。

于 2014-01-17T12:50:23.540 に答える