-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
53 lines (45 loc) · 1.54 KB
/
options.html
File metadata and controls
53 lines (45 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- <link rel= "stylesheet" type= "text/css" href= "normalize.css"/> -->
<!-- <link rel= "stylesheet" type= "text/css" href= "styles.css"/> -->
<link rel= "stylesheet" type= "text/css" href= "options.css"/>
<meta charset="UTF-8">
</head>
<body>
<div id="overlay-reset" class="overlay">
<div class="centered-pack">
<div class="line-icon-container">
<span class="line-icon icon-replay"></span>
</div>
<span id="btn-overlay-check" class="btn-overlay btn-icon icon-check"></span>
<span id="btn-overlay-close" class="btn-overlay btn-icon icon-close"></span>
</div>
</div>
<div class="container-main">
<h3>URL Quick Append</h3>
<h1>Settings</h1>
<div class="options">
<div class="option-line" id="option-line-reset">
<div class="option-desc">
<h3>Reset to Default Links</h3>
<!-- <p>Only Load Active Tab</p> -->
</div>
</div>
<label class="option-line" for="check-lazy">
<div class="option-desc">
<h3>Lazy Load</h3>
<p>Only Load Active Tab</p>
</div>
<div class="switch">
<input type="checkbox" id="check-lazy">
<span class="slider"></span>
</div>
</label>
</div>
<div class="btn" id="btn-apply">Apply</div>
</div>
<p id="msg-success" class="message hidden">Success!</p>
</body>
<script src="options.js"></script>
</html>