forked from xavierlacot/xavccChromeExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
38 lines (33 loc) · 942 Bytes
/
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
<title>xav.cc URL Shortener > Options</title>
<style>
/* Clone the look and feel of "chrome://" pages. */
body {
margin: 10px;
font: 84% Arial, sans-serif
}
h1 { font-size: 156% }
h1 img {
margin: 1px 5px 0 1px;
vertical-align: middle
}
h2 {
border-top: 1px solid #9cc2ef;
background-color: #ebeff9;
padding: 3px 5px;
font-size: 100%
}
</style>
<html>
<head>
<title>xav.cc options</title>
<script type="text/javascript" src="./js/jquery-1.5.min.js"></script>
<script type="text/javascript" src="./js/localstorage.js"></script>
<script type="text/javascript" src="./js/options.js"></script>
</head>
<body onload="init();">
<h1><img src="icon.png" alt="xav.cc">xav.cc</h1>
<h2>Options</h2>
AutoCopy:
<input id="auto-copy" name="auto_copy" type="checkbox" value="true" onchange="save();">
</body>
</html>