-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
35 lines (29 loc) · 1002 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
29
30
31
32
33
34
35
<!doctype html>
<html>
<head>
<title>URL Jumper popup</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="shared.css">
<link rel="stylesheet" href="popup.css">
<script src="shared.js" defer></script>
<script src="popup.js" defer></script>
</head>
<body>
<div style="text-align: right;">
<div style="text-align: right;"></div>
<div style="display: flex; justify-content: space-between;">
<button id="jump">Jump</button>
<button id="jump-new-tab">Jump to New Tab</button>
</div>
<div id="settings-div">
<a id="settings" href="settings.html"><button>Settings</button></a>
</div>
</div>
</div>
<div id="message" style="text-align: right;"></div>
<div class="autocomplete">
<textarea id="input" type="text" placeholder="Enter URL name here."></textarea>
</div>
</body>
</html>