-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
32 lines (32 loc) · 874 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
{
"name": "GitLab Approvals",
"version": "1.3.4",
"description": "Displays the approvals for a given MR within the MR list.",
"manifest_version": 2,
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://*.gitlab.com/*/merge_requests*",
"https://*.nordstrom.com/*/merge_requests*"
],
"js": [
"thirdparty/jquery.min.js",
"js/gitlab_api.js",
"js/show_approvals.js",
"js/cache_util.js"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "images/gitlab.png",
"32": "images/gitlab.png",
"48": "images/gitlab.png",
"128": "images/gitlab.png"
},
"options_page": "html/options.html"
}