forked from shadowsocks/shadowsocks-chromeapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·35 lines (35 loc) · 900 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name":"Shadowsocks",
"description":"Shadowsocks client for Chrome.",
"version":"0.9",
"manifest_version":2,
"minimum_chrome_version": "41",
"app":{
"background":{
"scripts":[
"vendor/forge.min.js", "vendor/jsrc4.js", "lib/logging.js",
"lib/common.js", "lib/crypto/rc4_md5.js", "lib/crypto/forge.js",
"lib/encrypt.js", "lib/socks5.js", "lib/background.js"
]
}
},
"icons":{
"16":"res/img/icon-16.png",
"128":"res/img/icon-128.png"
},
"permissions": [
"background", "storage"
],
"sockets": {
"udp": {
"send": ["*:*"],
"bind": ["*:*"]
},
"tcp": {
"connect": ["*:*"]
},
"tcpServer": {
"listen": ["*:*"]
}
}
}