-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
84 lines (75 loc) · 2.75 KB
/
popup.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
<!-- settings.html -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css">
<title>Highlight First Syllable Settings</title>
<script src="popup.js"></script>
</head>
<body>
<div class="centerElement">
<p class="title"><b>Hyper</b>Bold</p>
</div>
<div class="formHolder">
<form id="settings-form">
<div class="switchHolder">
<p class="formLabel">Enabled</p>
<label class="switch">
<input type="checkbox" id="enabled">
<span class="slider round"></span>
</label>
</div>
<div class="switchHolder">
<p class="formLabel">Use Hilight</p>
<label class="switch">
<input type="checkbox" id="enable-highlighting">
<span class="slider round"></span>
</label>
</div>
<div class="switchHolder">
<p class="formLabel">Hilight Color</p>
<label>
<select id="highlight-color" name="highlight-color">
<option value="yellow">Yellow</option>
<option value="green">Green</option>
<option value="blue">Blue</option>
<option value="compliment">Compliment</option>
</select>
</label>
</div>
<div class="switchHolder">
<div class="verticalGroup">
<p class="siteHeader">This Website:</p>
<div class="siteLabel">
<p id="site-label">This Page:</p>
</div>
</div>
<label class="switch">
<input type="checkbox" id="site-switch">
<span class="slider round"></span>
</label>
</div>
<div class="switchHolder">
<div class="verticalGroup">
<p class="siteHeader">This Page:</p>
<div class="siteLabel">
<p id="page-label">This Page:</p>
</div>
</div>
<label class="switch">
<input type="checkbox" id="page-switch">
<span class="slider round"></span>
</label>
</div>
<div class="centerElement">
<button type="submit" class="submit" id="submitButton">Refresh</button>
</div>
</form>
<div class="donate">
<div class="centerElement">
<a href="https://www.paypal.me/joshomaton" target="_blank">Donate</a>
</div>
</div>
</div>
</body>
</html>