-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.12 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "Concourse Status Amplifier",
"version": "0.5.0",
"manifest_version": 2,
"description": "Amplify Concourse status via background image",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "59.0"
}
},
"permissions": [
"https://ci.concourse-ci.org/teams/*/pipelines/*",
"https://hush-house.pivotal.io/teams/*/pipelines/*",
"storage",
"contextMenus",
"activeTab"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"https://ci.concourse-ci.org/teams/*/pipelines/*",
"https://hush-house.pivotal.io/teams/*/pipelines/*"
],
"exclude_matches": [
"*://*/teams/*/pipelines/*/jobs/*"
],
"css": [
"contentScript.css"
],
"js": [
"contentScript.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Amplify your Concourse Status"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}