-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
37 lines (29 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<style>
.option-label {
font-family: Segoe UI,Arial,sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 26.4px;
display: block;
}
.option-submit {
margin-left: 10px;
}
</style>
<body>
<form>
<label class="option-label">Enable Commentary <input type="checkbox" class="option-check" id="hussiecomment"></label>
<label class="option-label">
Disable <a href="https://bambosh.github.io/unofficial-homestuck-collection/">TUHC</a> redirection
<input type="checkbox" class="option-check" id="notuhc"></label>
<button class="option-submit" type="submit">Save</button>
</form>
<script type="application/javascript" src="node_modules/webextension-polyfill/dist/browser-polyfill.min.js"></script>
<script src="options.js"></script>
</body>
</html>