-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
78 lines (70 loc) · 1.55 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
<!DOCTYPE html>
<head>
<script src="state.js"></script>
<script src="checker.js"></script>
<script src="find_tab.js"></script>
<script src="background_task.js"></script>
<script src="options.js"></script>
<style>
body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
color:grey;
font-family: sans-serif;
}
#options_pane {
padding-top: 20%;
margin: auto;
text-align: center;
background-color: white;
width: 300px !important;
height: 300px !important;
}
A {
font-family: monospace;
font-size: 20px;
}
A:link {
text-decoration: none;
color:grey;
}
A:visited {
text-decoration: none;
color:grey;
}
A:active {
text-decoration: none;
color:grey;
}
A:hover {
color:red;
}
</style>
</head>
<body>
<div id="options_pane">
<b>DGS Checker options</b><br/><br/>
<div id="check_freq">
<span>Check DGS every:</span>
<select id="check_frequency">
<option value="60000">1 minute (use with caution!)</option>
<option value="300000">5 minutes</option>
<option value="600000">10 minutes</option>
<option value="1800000">30 minutes</option>
</select><br/>
<span style="font-size: 10px">
(Using intervals less than 5 minutes may cause DGS ban)
</span>
</div>
<br/>
<div>
I don't like all this shiny new features:
<input id="hardcore_mode" type="checkbox" name="hardcore" value="true" />
</div><span style="font-size: 10px">(open DGS status on icon click)</span>
<br/>
<br/>
<a href="#" id="save_options">Save</a>
</div>
</body>