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
資訊清單屬性會宣告應用程式可發出的 sockets.udp 作業。類型 屬性 說明 字串或字串陣列 (選填) bind bind
作業的主機:連接埠模式。字串或字串陣列 (選擇性) 傳送 send
作業的主機:連接埠模式。字串或字串陣列 (選用) 多點傳播成員資格 joinGroup
作業的 host:port 模式。tcp
(物件) - 選用tcp
資訊清單屬性會宣告應用程式可發出的 sockets.tcp 作業。類型 屬性 說明 字串或字串陣列 (選用) connect connect
作業的主機:連接埠模式。tcpServer
(物件) - 選用tcpServer
資訊清單屬性會宣告應用程式可發出的 sockets.tcpServer 作業。類型 屬性 說明 字串或字串陣列 (選用) 聆聽 listen
作業的 host:port 模式。