-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptions_public.html
89 lines (77 loc) · 3.62 KB
/
options_public.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html>
<head>
<title>JIRA Plugin Setup</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<h1>JIRA Instant Agile Chrome Plugin Configuration Page</h1>
<hr>
<h2 style='text-decoration: underline'>Configure Menu Bar</h2>
<p>Select the items you want to show on the menubar</p>
<table border="0">
<tr>
<td><img src='' id='menubar' /></td>
<td>
<input type='checkbox' name="ck1" id="ck1">
1) Maximize Space (allows you to remove the header of the jira work board)
<br>
<input type='checkbox' name="ck2" id="ck2">
2) Allows you to see only the issues you are watching (great for story huddles or important issues you care about)
<br>
<input type='checkbox' name="ck3" id="ck3">
3) Allows you to sort by labels (if your team uses labels on issues)
<br>
<input type='checkbox' name="ck4" id="ck4">
4) Allows you to sort by assignee
<br>
<input type='checkbox' name="ck5" id="ck5">
5) Allows you to filter by component (great for teams that organize work by components)
<br>
<input type='checkbox' name="ck6" id="ck6">
6) Allows you to filter users (great for team members to see what issues are assigned to them without swimlanes)
<br>
<input type='checkbox' name="ck7" id="ck7">
7) Allows you to filter by priority
<br>
<input type='checkbox' name="ck8" id="ck8">
8) Allows you to filter by fixed version
<br>
<input type='checkbox' name="ck9" id="ck9">
9) Allows you to filter by issue type and hide all sub-tasks
<br>
<input type='checkbox' name="ck10" id="ck10">
10) Allows you to see how many issues are in each status and how many story points are in each status
</td>
</tr>
</table>
<hr>
<h2 style='text-decoration: underline'>Configure Hover</h2>
<p>Select the fields you want to display on the hover</p>
<input type='checkbox' name="hoverDescription" id="hoverDescription"> Description<br>
<input type='checkbox' name="lastComment" id="lastComment"> Last Comment<br>
<input type='checkbox' name="relatedCards" id="relatedCards"> Related Cards (sub/parent, blocking/blocked by)<br>
<input type='checkbox' name="fixVersion" id="fixVersion"> fixVersion<br>
<hr>
<button id='saveButton1'>Save</button>
<div id='savedMsg1'>The configuration options have been saved.</div>
<hr>
<h2 style='text-decoration: underline'>Configure Cards</h2>
<!--<h3>Watchers</h3>-->
<!--<p>You can define what watchers to show on the cards. For example, it is useful for QA team to use this field to show all the QA engineers so they know every card has a QA assigned.</p>-->
<!--<div>-->
<!--Watchers names (First name + Last name initial, separated by comma) <input type='text' name="watchersNames" id="watchersNames">-->
<!--</div>-->
<h3>Labeling</h3>
Any JIRA labels started with underscore "_" are displayed on the top right corner of the card. e.g. "_InQA", "_FailedQA"
<h3>Sub tasks, blocking / blocked tasks</h3>
Any sub tasks and blocking/blocked by tasks are displayed on the top left corner of the card.
<h3>Hygiene</h3>
If the hygiene checkbox is checked, a “Hygiene” label is displayed on the bottom left corner of the card.
<hr>
<button id='saveButton2'>Save</button>
<div id='savedMsg2'>The configuration options have been saved.</div>
<script type="text/javascript" src="options.js"></script>
<hr>
Please submit bugs, feature requests, feedback to <u>[email protected]</u>.
</body>
</html>