-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
33 lines (33 loc) · 911 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Someity - Options</title>
<script src="jquery-3.1.0.min.js"></script>
</head>
<body>
<div
style="
margin-left: 20px;
margin-bottom: 20px;
display: flex;
align-items: center;
"
>
<h4>Enable Someity Voice Actions</h4>
<input
style="margin-left: 20px"
type="checkbox"
name="checkbox"
id="assistant_enable"
/>
</div>
<div style="margin-left: 20px; margin-bottom: 20px; color: gray">
You can change this anytime by right-clicking on the Someity icon from the
extensions panel and selecting Options.
</div>
<script src="options.js"></script>
</body>
</html>