-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
59 lines (54 loc) · 1.89 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
59
{
"manifest_version": 2,
"name": "FI Trello Estimation Tool",
"description": "Estimate task time on Trello cards",
"version": "0.1",
"permissions": [
"tabs",
"https://localhost:5000/estimations",
"https://estimation-fi.herokuapp.com/estimations"
],
"background": {
"scripts": [
"/src/javascript/vendors/jquery-1.10.1.min.js",
"src/javascript/background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*://trello.com/*"
],
"css": [
"/src/stylesheet/vendor/ui-lightness/jquery-ui-1.10.3.custom.css",
"/src/stylesheet/vendor/ui-lightness/jquery-ui-1.10.3.custom.min.css",
"/src/stylesheet/vendor/bootstrap.min.css",
"/src/stylesheet/board.css",
"/src/stylesheet/card.css",
"/src/stylesheet/card_spinner.css"
],
"js": [
"/src/javascript/vendors/jquery-1.10.1.min.js",
"/src/javascript/vendors/jquery-ui-1.10.3.custom.min.js",
"/src/javascript/shared.js",
"/src/javascript/board.js",
"/src/javascript/card.js",
"/src/javascript/main.js"
]
}
],
"web_accessible_resources": [
"/src/html/estimation_modal.html",
"/src/html/estimations.html",
"/src/html/card_estimation_btn.html",
"/src/stylesheet/vendor/ui-lightness/images/ui-icons_ef8c08_256x240.png",
"/src/stylesheet/vendor/ui-lightness/images/ui-icons_222222_256x240.png",
"/src/stylesheet/vendor/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png",
"/src/stylesheet/vendor/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png",
"/src/stylesheet/vendor/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png",
"/src/stylesheet/vendor/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png",
"/src/stylesheet/vendor/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png"
]
}