-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
125 lines (103 loc) · 4.02 KB
/
popup.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!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>Reader.ai</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="body_tag">
<div class="box1">
<div class="title_box">
<a href="https://www.readerai.org" target="_blank" class="title-header">
<img style="cursor: pointer; margin-top: 2px;"
width="25px"
height="25px"
src="images/readerai_logo.svg">
<h1>ReaderAI</h1>
</a>
<div class="title-right">
<div>
<a>
<img
class="notes_icon"
title="Notes Explorer"
id="notes_button"
src="/images/notes_popup.png">
</a>
</div>
<div>
<a href="options.html">
<img
class="settings_icon"
title="Settings and Features"
id="setting_svg"
src="/images/icons8-settings.svg">
</a>
</div>
<div>
<a>
<img
style="cursor: pointer; margin-top: 4px;"
width="19px" height="19px"
class="User Account"
title="Click to Sign In"
id="login_btn"
src="/images/login.png">
</a>
</div>
<div>
<a href="https://www.readerai.org/#/features" target="_blank">
<img
class="faq_icon"
title="FAQ and Usage"
id="faq_svg"
src="/images/faq.png"
>
</a>
</div>
</div>
</div>
<script src="popup.js"></script>
<!-- <script src="google_api.js"></script> -->
<div class="text_rows">
<div class="utility-row">
<img
style="margin-right: 8px;"
width="16px" height="16px"
src="images/highlight.png">
<span style="margin-right: 25px;">Auto-Highlight Text</span>
<button id="highlight_btn"
class="button_2"
role="button"
>Highlight!</button>
</div>
<div class="bottom-border"></div>
<div class="utility-row">
<img src="images/toggle.png"
style="margin-right: 8px;"
width="20px" height="20px" >
<span style="margin-right: 52px;">Switch Theme</span>
<button
id="dark_mode_toggle"
class="button_2"
role="button">Toggle theme⛅</button>
</div>
<div class="bottom-border"></div>
<div id="read_time">
<span style="margin-right: 27px;">Estimated Reading Time :</span>
<span class="time_displayed" id="read_time_display"></span>
</div>
<div id="notes_in_page" class="note_here">
<span style="margin-right: 16px;">Note Markers in This Page :</span>
<span class="time_displayed" id="marker_number"></span>
</div>
<button id="current_url_notes" class="open-note"
role="button">
<img src="images/open_note.svg" width="20px" height="20px">
Saved content for this Page</button>
</div>
</div>
</body>
</html>