-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
43 lines (43 loc) · 1.1 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
{
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.1.4",
"author": "Alessandro Polidori",
"manifest_version": 2,
"default_locale": "en",
"options_page": "html/options.html",
"background": {
"scripts": [
"lib/async.js",
"lib/jquery-2.1.4.min.js",
"lib/message-bus.js",
"src/js/util.js",
"src/js/mediator.js",
"src/js/chrDesktopNotificationsView.js",
"src/js/Source.js",
"src/js/optionsModel.js",
"src/js/extensionController.js",
"src/js/sourceController.js"
]
},
"permissions": [
"tabs",
"storage",
"http://*/",
"https://*/",
"notifications"
],
"icons": {
"16": "img/logo16.png",
"32": "img/logo32.png",
"48": "img/logo48.png",
"128": "img/logo128.png",
"256": "img/logo256.png"
},
"browser_action": {
"default_icon": {
"19": "img/logo19.png",
"38": "img/logo38.png"
}
}
}