-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 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
44
45
46
47
{
"name": "Github and Azure review requests list",
"short_name": "Review requests list",
"author": "Andrii Raikov",
"version": "0.7.0",
"description": "Github and Azure review requests list",
"manifest_version": 2,
"background": {
"persistent": false,
"scripts": [
"js/namespace.js",
"js/storage.js",
"js/badge.js",
"js/notifications.js",
"js/requests-data.js",
"js/providers/github.js",
"js/providers/azure.js",
"js/background.js"
]
},
"permissions": [
"storage",
"notifications",
"alarms",
"activeTab",
"idle",
"contextMenus"
],
"icons": {
"16": "img/pull-request-icon_16.png",
"32": "img/pull-request-icon_32.png",
"48": "img/pull-request-icon_64.png",
"128": "img/pull-request-icon_128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_action": {
"default_icon": {
"19": "img/pull-request-icon_128.png",
"38": "img/pull-request-icon_128.png"
},
"default_title": "Github review requests list",
"default_popup": "popup.html"
}
}