-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
104 lines (101 loc) · 3.54 KB
/
options.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>Personal Capital Plus Options</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="header-container">
<div class="header-wrapper">
<div class="header">
<h3>PERSONAL CAPITAL PLUS CHROME EXTENSION</h3>
</div>
</div>
</div>
<div class="main-container">
<div class="main-wrapper">
<div class="main">
<div id="options" class="options">
<div>
<input id="hideZeroBalances" type="checkbox" />
<label for="hideZeroBalances">
<span class="checkboxtext">Hide zero balance accounts</span>
</label>
<span class="helptext">
Hides all accounts from the sidebar with a balance of exactly
$0.00.
</span>
</div>
<div>
<input id="sortBalances" type="checkbox" />
<label for="sortBalances">
<span class="checkboxtext">Sort accounts by value</span>
</label>
<span class="helptext">
Sort accounts in the sidebar descending by dollar value (credit
cards are sorted ascending).
</span>
</div>
<div>
<input id="condenseBalances" type="checkbox" />
<label for="condenseBalances">
<span class="checkboxtext">Condense accounts list</span>
</label>
<span class="helptext">
Show more accounts in the sidebar at once by making the display
boxes smaller.
</span>
</div>
<div>
<input id="hideBackgroundGraphs" type="checkbox" />
<label for="hideBackgroundGraphs">
<span class="checkboxtext">Hide header background graphs</span>
</label>
<span class="helptext">
Hide the graphs behind the account type headers in the sidebar.
This makes the headings easier to read.
</span>
</div>
<div>
<input id="hideNetWorth" type="checkbox" />
<label for="hideNetWorth">
<span class="checkboxtext">Hide net worth</span>
</label>
<span class="helptext">
Hide the net worth in the sidebar. Useful for keeping sensitive
info hidden from prying eyes. Hover over net worth to see the
original value.
</span>
</div>
<div>
<input id="replaceManualEntryText" type="checkbox" />
<label for="replaceManualEntryText">
<span class="checkboxtext">Replace manual entry text</span>
</label>
<span class="helptext">
Replace the "Manual Entry" text with the current date for each
manual account in the sidebar. This makes the last updated
account times easier to read.
</span>
</div>
</div>
<hr />
<div style="clear:both;">
<button id="save">Save</button>
</div>
<br />
View source, file issues, and contribute on
<a href="https://github.com/AMeng/personal_capital_plus" target="_blank">
GitHub
</a>.
Rate and review on the
<a href="https://chrome.google.com/webstore/detail/personal-capital-plus/bkaagconbehchjkhgkojhabaklbpfcfa" target="_blank">
Chrome Web Store
</a>.
<h3 id="status"></h3>
</div>
</div>
</div>
</body>
<script src="options.js"></script>
</html>