cordova-chrome-net
Version:
Use the Node `net` API in cordova Apps
31 lines (26 loc) • 399 B
JSON
{
"manifest_version": 2,
"name": "Hello World!",
"description": "My first Chrome App.",
"version": "0.1.0",
"app": {
"background": {
"scripts": ["background.js"]
}
},
"permissions": [
"*://*/*"
],
"sockets": {
"udp": {
"bind": "*",
"send": "*"
},
"tcp": {
"connect": "*"
},
"tcpServer": {
"listen": "*"
}
}
}