-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
62 lines (48 loc) · 1.63 KB
/
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
<html id="options_page">
<head>
<title>Reader.ai Extension Settings</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="options_tab.css">
<script src="options.js"></script>
</head>
<body class="box-tag">
<div class="navbar">
<div class="navbar-header">
<img
class="readerai-logo"
src="/images/readerai_logo.svg"
width="35"
height="35">
<h1
class="navbar-text">ReaderAI</h1>
</div>
<div class="navbar-footer">
ReaderAI - Read Faster, Save Time!
</div>
</div>
<div class="main-text-box">
<h2 class="sub-heading">Settings</h2>
<ul class="sub-content">
<li>
<label class="switch">
<input id="textAssist_toggle" type="checkbox" checked>
<span class="slider round"></span>
</label>
<span>Enable Text Assist.</span>
<p class="sub-text">
Text Assist helps you select words or sequence of words and find their meaning or usage.
</p>
</li>
<li>
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
<span>This toggle button is waiting for you to toggle it</span>
</li>
</ul>
</div>
</body>
</html>