พร็อพเพอร์ตี้ไฟล์ Manifest sockets จะประกาศสิทธิ์ที่ใช้ได้กับ 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สตริงหรืออาร์เรย์ของสตริง (ไม่บังคับ) ส่ง รูปแบบโฮสต์:พอร์ตสำหรับการดำเนินการ
sendสตริงหรืออาร์เรย์ของสตริง (ไม่บังคับ) multicastMembership รูปแบบโฮสต์:พอร์ตสำหรับการดำเนินการ
joinGrouptcp(ออบเจ็กต์) - ไม่บังคับพร็อพเพอร์ตี้ไฟล์ Manifest
tcpจะประกาศว่าการดำเนินการ sockets.tcp ที่แอปออกได้ประเภท แอตทริบิวต์ คำอธิบาย สตริงหรืออาร์เรย์ของสตริง (ไม่บังคับ) เชื่อมต่อ รูปแบบโฮสต์:พอร์ตสำหรับการดำเนินการ
connecttcpServer(ออบเจ็กต์) - ไม่บังคับพร็อพเพอร์ตี้ไฟล์ Manifest
tcpServerจะประกาศว่าการทำงานของ sockets.tcpServer ที่แอปออกได้ประเภท แอตทริบิวต์ คำอธิบาย สตริงหรืออาร์เรย์ของสตริง (ไม่บังคับ) ฟัง รูปแบบโฮสต์:พอร์ตสำหรับการดำเนินการ
listen