mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-03 14:39:37 +07:00
18 lines
342 B
JSON
18 lines
342 B
JSON
{
|
|
"name": "WebSocket Server Test",
|
|
"description": "Runs an Http and WebSocket server with a quick and dirty test chat application.",
|
|
"version": "0.3",
|
|
"manifest_version": 2,
|
|
|
|
"permissions": [
|
|
{"socket": [
|
|
"tcp-connect",
|
|
"tcp-listen"]}],
|
|
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
}
|
|
}
|
|
}
|