-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
33 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<script src="js/lib/jquery.js"></script>
<script src="js/popup.js"></script>
<link rel="stylesheet" href="css/lib/materialize.min.css">
<link rel="stylesheet" type="text/css" href="css/popup.css" />
</head>
<body>
<div id="loader" class="progress">
<div class="indeterminate"></div>
</div>
<div id="container" class="options" style="display: none;">
<div class="options-1">
<span class="options-text">Extension State</span>
<div class="switch">
<label>
Off
<input type="checkbox" id="extension-state">
<span class="lever"></span>
On
</label>
</div>
</div>
<div class="options-2" id="juzselect-options">
<span class="options-text">Settings</span>
</div>
</div>
</body>
</html>