forked from PalashTanejaPro/BlindHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
42 lines (41 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Read Aloud</title>
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/popup.css">
<script src="js/es6-promise.auto.min.js"></script>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/defaults.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div id="status">
</div>
<div id="buttons">
<i class="material-icons button-1" id="btnRewind">fast_rewind</i>
<img src="img/loading.gif" id="imgLoading" />
<i class="material-icons button-1" id="btnPlay">play_arrow</i>
<i class="material-icons button-1" id="btnPause">pause</i>
<i class="material-icons button-1" id="btnStop">stop</i>
<i class="material-icons button-1" id="btnSettings">settings</i>
<i class="material-icons button-1" id="btnForward">fast_forward</i>
</div>
<div id="highlight">
</div>
<div id="resize">
<i class="material-icons" id="btnResize">settings_overscan</i>
</div>
<div id="footer">
<a href="report.html">report issues</a>
</div>
<div id="attribution">
<a href="https://translate.google.com/" target="_blank">
powered by
<span class="google-logo"><span>G</span><span>o</span><span>o</span><span>g</span><span>l</span><span>e</span></span> Translate
</a>
</div>
</body>
</html>