-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
66 lines (61 loc) · 1.6 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "0.0.1",
"default_locale": "en",
"description": "__MSG_appDesc__",
// "update_url": "http://path/to/updateInfo.xml",
"app": {
"background": {
"scripts": ["scripts/background.js"]
}
},
"icons": {
"16": "icon/16x16.png",
"32": "icon/32x32.png",
"48": "icon/48x48.png",
"64": "icon/64x64.png",
"96": "icon/96x96.png",
"128": "icon/128x128.png",
"256": "icon/256x256.png"
},
"offline_enabled": true,
"permissions": [
"app.window",
"clipboardRead",
"clipboardWrite",
"storage",
{
"fileSystem": [
"write",
"retainEntries",
"directory"
]
},
{
"socket": [
"tcp-connect:*:*"
]
}
],
"file_handlers": {
"text": {
"title": "__MSG_appName__",
"types": [
"application/dart",
"application/javascript",
"application/json",
"application/xml",
"text/css",
"text/dart",
"text/html",
"text/javascript",
"text/json",
"text/xml",
"text/yaml",
"text/*"
],
"extensions": ["coffee", "css", "htm", "html", "htmls", "js", "json", "manifest", "md", "shtml", "text", "textile", "txt", "xml", "yaml"]
}
}
}