sockets
พร็อพเพอร์ตี้ไฟล์ Manifest จะประกาศสิทธิ์ที่ใช้ได้กับ sockets.udp,
sockets.tcp และ sockets.tcpServer API
ตัวอย่างไฟล์ manifest.json
{
"name": "My Sockets app",
"sockets": {
"udp": {
// Permission for chrome.sockets.udp.send:
// The application is allowed to send udp packets
// to any host:port combination.
"send": "*"
},
"tcp": {
// Permission for chrome.sockets.tcp.connect:
// The application is allowed to connect only to the
// tcp server on 127.0.0.1 port 80.
"connect": "127.0.0.1:80"
},
"tcpServer": {
// Permission for chrome.sockets.tcpServer.listen:
// The application is allowed to accept new client
// connections on the local address at port 80.
"listen": "127.0.0.1:80"
}
},
...
}
ข้อมูลอ้างอิง
udp
(ออบเจ็กต์) - ไม่บังคับพร็อพเพอร์ตี้
udp
ของไฟล์ Manifest จะประกาศการดำเนินการ sockets.udp ที่แอปออกได้ประเภท แอตทริบิวต์ คำอธิบาย สตริงหรืออาร์เรย์สตริง (ไม่บังคับ) bind รูปแบบโฮสต์:พอร์ตสำหรับการดำเนินการ
bind
สตริงหรืออาร์เรย์ของสตริง (ไม่บังคับ) ส่ง รูปแบบโฮสต์:พอร์ตสำหรับการดำเนินการ
send
สตริงหรืออาร์เรย์ของสตริง (ไม่บังคับ) multicastMembership รูปแบบ host:port สําหรับการดําเนินการ
joinGroup
tcp
(ออบเจ็กต์) - ไม่บังคับพร็อพเพอร์ตี้ไฟล์ Manifest
tcp
จะประกาศการดำเนินการ sockets.tcp ที่แอปสามารถดำเนินการได้ประเภท แอตทริบิวต์ คำอธิบาย สตริงหรืออาร์เรย์สตริง (ไม่บังคับ) connect รูปแบบ host:port สําหรับการดําเนินการ
connect
tcpServer
(ออบเจ็กต์) - ไม่บังคับพร็อพเพอร์ตี้
tcpServer
ของไฟล์ Manifest จะประกาศการดำเนินการ sockets.tcpServer ที่แอปสามารถดำเนินการได้ประเภท แอตทริบิวต์ คำอธิบาย สตริงหรืออาร์เรย์สตริง (ไม่บังคับ) listen รูปแบบ host:port สําหรับการดําเนินการ
listen