From 4dcf1e8d5c79281caa0f90637a00e07ff3993274 Mon Sep 17 00:00:00 2001 From: Charles Julian Knight Date: Mon, 24 Mar 2014 23:56:11 -0400 Subject: [PATCH] Updated chrome app manifest to allow new chrome.sockets API --- chrome/manifest.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/chrome/manifest.json b/chrome/manifest.json index 249dc26b..6c216399 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -34,6 +34,17 @@ "http://*/*", "contextMenus" ], - + "sockets": { + "udp": { + "bind": "*", + "send": "*" + }, + "tcp": { + "connect": "*" + }, + "tcpServer": { + "listen": "*" + } + }, "offline_enabled": true -} \ No newline at end of file +}