-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
49 lines (46 loc) · 1.1 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Copy Page URL Options</title>
<style type="text/css">
input[type="radio"] {
vertical-align: middle;
}
.option {
margin-top: 10px;
display: inline-block;
}
.delimeter {
display: inline-block;
width: 20px;
}
.icon {
width: 32px;
height: 32px;
vertical-align: middle;
}
</style>
</head>
<body>
<div>
Choose the toolbar icon: <br>
<label class="option toolbar_icon" for="toolbar_icon:black">
<input type="radio" name="toolbar_icon" id="toolbar_icon:black">
<img src="copy_black_128.png" class="icon">
</label>
<span class="delimeter"></span>
<label class="option toolbar_icon" for="toolbar_icon:gray">
<input type="radio" name="toolbar_icon" id="toolbar_icon:gray">
<img src="copy_gray_128.png" class="icon">
</label>
</div>
<div>
<label class="option clean_url">
<input type="checkbox" name="clean_url" id="clean_url" value="1">
Remove marketing tags from URLs
</label>
</div>
<script src="defaults.js"></script>
<script src="options.js"></script>
</body>
</html>