-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
21 lines (20 loc) · 766 Bytes
/
options.html
File metadata and controls
21 lines (20 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<body>
<h2>List the words/regex here:</h2>
<div id=input>
</div>
<button id="addButton">+</button>
<h2>Time to wait before checking for the words (in ms)</h2>
<input id="time" type=text value=1000></input><br>
<h2>How often to check in ms (set to 0 to check only once)</h2>
<input id="interval" type=text value=0></input><br>
<h2>Play a sound when a word is found</h2>
<input id="sound" type=checkbox></input><br>
<h2>Show a popup if a word is found</h2>
<input id="alert" type=checkbox checked></input><br>
<button id="submit">save</button>
<h3 id="status"></h3>
<script src="options.js"></script>
</body>
</html>