-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 988 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
33
34
35
{
"manifest_version": 2,
"name": "Evil Jenkins",
"version": "1.0",
"description": "This extension helps identify buggy specs in recent Jenkins build failures",
"icons": {
"128": "images/evil-jenkins.png"
},
"background": {
"scripts": ["app/background.js"],
"persistent": false
},
"page_action": {
"default_icon": {
"48": "images/evil-jenkins.png"
},
"default_title": "Failing Tests"
},
"content_scripts": [{
"matches": ["https://*.com/view/*/job/*/", "https://*.com/job/*/"],
"include_globs": ["*https://jenkins.*"],
"exclude_globs": ["https://*.com/view/*/job/*/*/", "*/HTML_Report/*"],
"js": ["app/content.js"],
"run_at": "document_end"
}],
"author": "Bryan Finlayson",
"offline_enabled": false,
"permissions": [
"tabs",
"activeTab",
"debugger",
"storage",
"declarativeContent"
]
}