Skip to content

Instantly share code, notes, and snippets.

@jancajthaml
Created February 3, 2019 00:21
Show Gist options
  • Save jancajthaml/7d70c135fdb03d5446ec15a817559867 to your computer and use it in GitHub Desktop.
Save jancajthaml/7d70c135fdb03d5446ec15a817559867 to your computer and use it in GitHub Desktop.
chrome.experimental.socket.create('tcp', '127.0.0.1', 8080, function(socketInfo) {
chrome.experimental.socket.connect(socketInfo.socketId, function (result) {
chrome.experimental.socket.write(socketInfo.socketId, "Hello, world!");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment