-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathoptions.html
More file actions
26 lines (25 loc) · 877 Bytes
/
options.html
File metadata and controls
26 lines (25 loc) · 877 Bytes
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
<!DOCTYPE html>
<html>
<head><title>Vocab Bot V2 - Options</title></head>
<body>
<p>Leave Empty for default</p>
<label>
Search the word
<input type="text" id="query" placeholder="query to search">
for new spelling bees to complete (useful when you went through "test"). If you put it to *, then we will find random lists to solve.
</label><br>
<label>
<input type="checkbox" id="hide"> Hide page
</label><br>
<label>
<input type="button" id="reset" value="Reset data"> ( Useful if extension doesn't work )
</label><br>
<label>
<input type="number" id="strike" max="100" min="3"> Max number of unknown words in a row before abandoning list
</label>
<div id="status"></div><br>
<button id="abandon">Restore</button>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>