forked from Kottakji/minitranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
26 lines (23 loc) · 857 Bytes
/
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
<html>
<head>
<link href="popup.css" rel="stylesheet">
<script src="popup.js"></script>
</head>
<body>
<a id="toggle" href="#">
<div class="button-fill green">
<div class="button-text">Enabled</div>
<div class="button-text" style="display:none;">Disabled</div>
</div>
</a>
<div id="amountOfWordsRange">
<p>Slide to select the amount of words to translate per page</p>
<input id="range" type="range" min="1" max="20">
<p>Maximum <span id="rangeText"></span> words per page</p>
</div>
<div id="simplifiedOrTraditional">
<label><input id="simplified" type="radio" name="characters" value="simplified">Simplified</label>
<label><input id="traditional" type="radio" name="characters" value="traditional">Traditional</label>
</div>
</body>
</html>