-
Notifications
You must be signed in to change notification settings - Fork 43
/
manifest.json
48 lines (43 loc) · 1011 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "__MSG_name__",
"version": "0.2.2",
"manifest_version": 2,
"default_locale": "en",
"description": "__MSG_description__",
"icons": {
"16": "image/icon16.png",
"128": "image/icon128.png"
},
"options_page": "html/preferences.html",
"permissions": [
"tabs",
"storage",
"notifications",
"*://*/*"
],
"background": { "scripts": ["js/background.js"] },
"browser_action": {
"default_icon": "image/icon19.png"
},
"plugins": [
{
"path": "plugin/npFileManager.dll",
"public": false
},
{
"path": "plugin/npFileManager_64.so",
"public": false
},
{
"path": "plugin/npFileManager.so",
"public": false
},
{
"path": "plugin/npFileManager.plugin",
"public": false
}
],
"web_accessible_resources": [
"image/icon48.png"
]
}