-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
75 lines (75 loc) · 2.26 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="popup.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
type="text/css"
rel="stylesheet"
href="materialize/css/materialize.css"
media="screen,projection"
/>
<title>Search Box Focus</title>
</head>
<body>
<h5 id="heading" class="center-align">Search Box Focus</h5>
<img
src="icons/icons8-google-web-search-full-48.png"
alt="Logo"
id="logo"
/>
<div class="centered-container">
<i
class="power-button fa tooltipped turn-off"
data-position="top"
data-tooltip="Turn Extension On/Off"
></i
>
</div>
<div id="options">
<div class="menu-item">
<div class="menu-text">Autofocus</div>
<div class="switch menu-switch">
<label id="autofocus-tooltip" class="tooltipped" data-position="top">
<input type="checkbox" id="autofocus-switch" />
<span class="lever"></span>
</label>
</div>
</div>
<div id="tab-section" class="menu-item">
<div id="tab-text" class="menu-text">Tab</div>
<i
id="tab-power-button"
class="tab-power-button fa tooltipped tab-turn-off-on"
data-position="top"
data-tooltip="Permanently enable/disable Tab"
></i
>
<div class="switch menu-switch">
<label id="tab-tooltip" class="tooltipped" data-position="top">
<input type="checkbox" id="tab-switch" />
<span class="lever"></span>
</label>
</div>
</div>
<div id="shortcuts" class="menu-item pointer">
<div class="menu-text pointer">Shortcuts</div>
<div id="shortcut-display" class="menu-shortcut"></div>
</div>
</div>
<script
type="text/javascript"
src="materialize/js/materialize.min.js"
></script>
<script src="popup.js"></script>
</body>
</html>