-
Notifications
You must be signed in to change notification settings - Fork 6
/
app_manifest.json
47 lines (47 loc) · 1009 Bytes
/
app_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
36
37
38
39
40
41
42
43
44
45
46
47
{
"app": {
"background": {
"scripts": [
"js/background.js"
]
}
},
"icons": {
"16": "images/icons/16x16.png",
"19": "images/icons/19x19.png",
"32": "images/icons/32x32.png",
"48": "images/icons/48x48.png",
"128": "images/icons/128x128.png"
},
"description": "A tool like Postman",
"manifest_version": 2,
"name": "Phosphorus",
"short_name": "Phosphorus",
"minimum_chrome_version": "28",
"offline_enabled": true,
"permissions": [
"webview",
"system.display",
"http://*/*",
"https://*/*",
"contextMenus",
"unlimitedStorage",
"storage",
"fileSystem",
"fileSystem.write",
"notifications",
"identity",
{
"socket": [
"tcp-connect:*:*",
"tcp-listen:*:*"
]
}
],
"sandbox": {
"content_security_policy": "sandbox allow-scripts allow-popups; script-src 'self' 'unsafe-inline' 'unsafe-eval';",
"pages": []
},
"offline_enabled": true,
"version": "1.0.0"
}