-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevil_options.html
102 lines (84 loc) · 2.52 KB
/
evil_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
<!DOCTYPE html>
<html>
<head>
<title>Evil Options</title>
<link rel="stylesheet" href="css/options_page.css">
</head>
<body id="demon-options-page">
<!-- TODO: Load options from json file -->
<div class="logo"></div>
<section class="options">
<div class="grid">
<div>
<h2>Instant Demons</h2>
<label>
<input type="checkbox" name="hassel_direct">
Hasseldirect
</label>
<label>
<input type="checkbox" name="delete_dom">
Bye Bye DOM
</label>
<label>
<input type="checkbox" name="invert_page">
Invert Page
</label>
<label>
<input type="checkbox" name="rotate_images" class="subtle">
Rotate Images Slightly
</label>
<label>
<input type="checkbox" name="play_creed">
Play Creed
</label>
<label>
<input type="checkbox" name="remove_vowels">
Remove Vowels
</label>
</div>
<div>
<h2>"Wait for it" Demons</h2>
<label>
<input type="checkbox" name="rotate_overtime" class="subtle">
Rotate Page Overtime
</label>
<label>
<input type="checkbox" name="input_alerts" class="subtle">
Input keyup alerts
</label>
<label>
<input type="checkbox" name="lower_contrast" class="subtle">
Lower Contrast Overtime
</label>
</div>
<div>
<h2>Chance of Demons</h2>
<label class="subtle">
<input type="range" name="chance" min="0" max="100" value="100" step="5"></input>
<p class="slider-value"><span>100</span>%</p>
</label>
</div>
</div>
<div class="buttons">
<button id="save">Spawn Demons</button>
<button id="reset">Cast out Demons</button>
</div>
</section>
<p class="demon-message"></p>
<!-- <h2>Custom Demons</h2>
<label>
<input type="checkbox" name="replace_words" data-id="replace-words">
Replace words
</label>
<div class="custom-field" id="replace-words">
<label>Replace</label>
<input type="text" name="word_to_replace">
<label>With</label>
<input type="text" name="replace_with">
</div>
-->
<div class="demon-img"></div>
<script src="js/jquery.js"></script>
<script src="js/evil_options.js"></script>
</body>
</html>