-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpopup.html
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="wrap">
<div class="brand">
<img src="icons/mozhi-96.png" alt="Mozhi logo" />
<h1>Mozhi Translate Unofficial</h1>
</div>
<div class="selectors">
<label>
<span>Engine</span>
<select id="engine"></select>
</label>
<div class="lang-row">
<label>
<span>From</span>
<select id="source"></select>
</label>
<button id="swap" class="swap" title="Swap languages" type="button">⇄</button>
<label>
<span>To</span>
<select id="target"></select>
</label>
</div>
</div>
<textarea id="input" rows="4" placeholder="Type or paste text…"></textarea>
<div class="row">
<button id="translate" class="primary">Translate</button>
<button id="open-options" class="link">Settings</button>
</div>
<div id="output" class="output" hidden></div>
<div id="meta" class="meta"></div>
</div>
<script src="popup.js"></script>
</body>
</html>