-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
39 lines (30 loc) · 1.19 KB
/
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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title data-i18n="popupPageTitle">Popup | Search with Variables</title>
<meta name="description" content="">
<meta name="author" content="Daniel Biegler">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@font-face {
font-family: Raleway;
src: url(fonts/Raleway-VariableFont_wght.ttf);
}
</style>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="icon" type="image/png" href="icon128.png">
</head>
<body style="padding: 20px; min-width: 300px;">
<label data-i18n="pressEnterToSearch" for="input-search">Press enter to search</label>
<input data-i18n="extName" id="input-search" class="u-full-width" autofocus type="text" placeholder="Search with Variables">
<small><a href="options.html" target="_blank" id="a-goto-options">
<span data-i18n="seeYourVariables">See your variables</span> →
</a></small>
<script type="application/javascript" src="browser-polyfill.min.js"></script>
<script src="shared.js"></script>
<script src="apply_i18n.js"></script>
<script src="popup.js"></script>
</body>
</html>