-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathoptions.html
More file actions
33 lines (25 loc) · 713 Bytes
/
options.html
File metadata and controls
33 lines (25 loc) · 713 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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript" src="browser-polyfill.js"></script>
<meta charset="utf-8">
</head>
<body>
<form>
<p id="chromeText">Options will be loaded for all new pages on Chrome. Alternatively reload the page.</p>
<div >
<input type="checkBox" id="isOn">Active</input>
</div>
<div class="horizontal">
<button type="button" id="blacklist">blacklist</button>
<select id="voiceSelect" class="voiceSelect"></select>
</div>
</form>
<script src="options.js"></script>
</body>
<style>
body {width: 220px}
select {width: 50%}
.horizontal {display: flex, flex-direction: row}
</style>
</html>