mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
23 lines
373 B
JSON
23 lines
373 B
JSON
{
|
|
"name": "WebSocket Server Test",
|
|
"description": "Runs an Http and WebSocket server with a quick and dirty test chat application.",
|
|
"version": "0.3.2",
|
|
"manifest_version": 2,
|
|
|
|
"sockets": {
|
|
"tcp": {
|
|
"connect": "*"
|
|
},
|
|
|
|
"tcpServer": {
|
|
"listen": "*"
|
|
}
|
|
},
|
|
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
}
|
|
}
|
|
}
|