-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.json
32 lines (32 loc) · 849 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
{
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'",
"name": "Jenkins Notifier for Chrome™",
"version": "0.3.4",
"icons": {
"128": "images/icon.png",
"48": "images/icon.png",
"16": "images/icon.png"
},
"web_accessible_resources": [
"images/blue.png",
"images/red.png",
"images/yellow.png",
"images/grey.png"
],
"options_page": "options.html",
"background": {
"page" : "background.html"
},
"browser_action": {
"default_icon": "images/icon.png",
"default_title": "Jenkins Notifier for Chrome™",
"default_popup": "options.html"
},
"permissions": [
"background",
"notifications",
"http://*/",
"https://*/"
]
}