forked from jofen-chrome-extensions/translator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
executable file
·36 lines (31 loc) · 848 Bytes
/
options.html
File metadata and controls
executable file
·36 lines (31 loc) · 848 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel=stylesheet href="css/options.css">
</head>
<body>
<!-- languages -->
<h3>Target Languages</h3>
<select id="lang">
<option value="en">English</option>
<option value="fr">French</option>
<option value="de">German</option>
<option value="it">Italian</option>
<option value="es">Spanish</option>
<option value="ru">Russian</option>
<option value="zh-CN">Chinese</option>
<option value="ja">Japanese</option>
<option value="ko">Korean</option>
<option value="hi">Hindi</option>
<option value="ar">Arabic</option>
<option value="la">Latin</option>
</select>
<!-- buttons -->
<div class="buttons">
<button id="save">Save</button>
<span id="status"></span>
</div>
<!-- scripts -->
<script src="js/options.js"></script>
</body>
</html>