Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/chrome
diff options
context:
space:
mode:
authorCharles Julian Knight <charles@rabidaudio.com>2014-03-25 07:56:11 +0400
committerCharles Julian Knight <charles@rabidaudio.com>2014-03-25 07:56:11 +0400
commit4dcf1e8d5c79281caa0f90637a00e07ff3993274 (patch)
tree71cd9021ec356337694146b9b27a8abcdfbd31b3 /chrome
parent19c63cccd1da140c605a8a0ca4b4060b30a18a4f (diff)
Updated chrome app manifest to allow new chrome.sockets API
Diffstat (limited to 'chrome')
-rw-r--r--chrome/manifest.json15
1 files changed, 13 insertions, 2 deletions
diff --git a/chrome/manifest.json b/chrome/manifest.json
index 249dc26..6c21639 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
+}