-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
42 lines (42 loc) · 2.25 KB
/
options.html
File metadata and controls
42 lines (42 loc) · 2.25 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Memory Monitor Options</title>
<style>
label { margin-left: 20px }
</style>
</head>
<body>
<p><a href="https://chrome.google.com/webstore/detail/kbilomlpmhhhaimaigidhnjijhiajbam" target="_blank">Add the floating panel companion app</a></p>
<p><a href="https://danielherr.software/Support">Give feedback, get support, or report bugs</a></p>
<p>Your total memory capacity is <span id="capacity"></span> GB.</p>
<form>
<p>Select components to be shown on browser icon click:
<label><input type="checkbox" id="clickpanel"> panel</label>
<label><input type="checkbox" id="clickbar"> bar</label></p>
<p>Select components to be shown automatically:
<label><input type="checkbox" id="autopanel"> panel</label>
<label id="permissions"><input type="checkbox" id="autobar"> bar</label></p>
<p>Select the size of text:
<label><input type="number" min="0" max="999" id="panelsize"> panel</label>
<label><input type="number" min="0" max="999" id="barsize"> bar</label></p>
<p>Select the colors of text:
<label><input type="color" id="browsertextcolor"> browser icon</label>
<label><input type="color" id="paneltextcolor"> panel</label>
<label><input type="color" id="bartextcolor"> bar</label></p>
<p>Select the background colors:
<label><input type="color" id="browserbackground"> browser icon</label>
<label><input type="color" id="panelbackground"> panel</label>
<label><input type="color" id="barbackground"> bar</label></p>
<p>Select the seconds between measurements:
<label><input type="number" step="0.1" min="0" max="99" id="browserinterval"> browser icon</label>
<label><input type="number" step="0.1" min="0" max="99" id="panelinterval"> panel</label>
<label><input type="number" step="0.1" min="0" max="99" id="barinterval"> bar</label></p>
<p>Select the available memory to create a notification under:
<label><input type="number" step="0.1" min="0" max="9" id="notify"> gigabytes</label></p>
<p><input type="submit" value="Save"></p>
<p><input type="reset" value="Reset"></p>
</form>
<script src="options.js"></script>
</body>
</html>