Search code examples
google-chrome-extension

Is there any way to create a TCP server in chrome extension?


Instead of running a TCP server in native messaging host application, is it possible to run a TCP sever directly in chrome extension's background page and listen on localhost?


Solution

  • Extension cannot run tcp server, it can talk to external server by http or websocket. Thanks to wOxxOm