-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
57 lines (51 loc) · 1.39 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
{
"description": "",
"icons": { "16": "images/jira16.png",
"48": "images/jira48.png",
"128": "images/jira128.png" },
"permissions": [
"storage"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"name": "JIRA Agile Instant",
"version": "2.0.1",
"options_page": "options_public.html",
"content_scripts": [
{
"matches": [ "https://*/secure/RapidBoard.jspa*"],
"css": ["lc-jira-color.css"],
"js": ["lib/base64.js", "lib/underscore-min.js", "jquery.js", "utils.js", "jira_github_proxy.js", "others.js", "content_script.js"]
}
],
"web_accessible_resources": [
"images/web.png",
"images/web2.png",
"images/assignee.png",
"images/arrow_down.png",
"images/arrow_up.png",
"images/story_points.png",
"images/priority.png",
"images/label.png",
"images/ajax-loader.gif",
"images/github.png",
"images/open.png",
"images/max.png",
"images/status.png",
"images/priority.png",
"images/priority2.png",
"images/fixversion.png",
"images/notes.png",
"images/sort.png",
"images/filter.png",
"images/me.png",
"images/watching.png",
"images/users.png",
"images/component.png",
"images/menubar.png",
"script.js"
],
"manifest_version": 2
}