mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
19 lines
311 B
JSON
19 lines
311 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Sample of UDP Network Access",
|
|
"description": "Echo..... Echo.",
|
|
"version": "2.2",
|
|
"minimum_chrome_version": "33",
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["main.js"]
|
|
}
|
|
},
|
|
"sockets": {
|
|
"udp": {
|
|
"send": ["*"],
|
|
"bind": ["*"]
|
|
}
|
|
}
|
|
}
|