-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
28 lines (28 loc) · 937 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
27
28
<!DOCTYPE html>
<html>
<head>
<link href="main.css" type="text/css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
</head>
<body>
<div class="linguini-container">
<img src="images/title.png" alt="Linguini" style="width: 153px; height: 48px;">
<hr>
<p>
Highlight any text and press the designated translate hotkey to view translations.
</p>
<label for="languages">Translate to:</label>
<div>
<select id="languages" name="languages">
</select>
</div>
<br>
<label for="changeHotkey">Select Hotkey:</label>
<input type="button" id="changeHotkey" value="Click to Change (T)">
<script src="translate.js"></script>
<script src="popup.js"></script>
</div>
</body>
</html>