-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
40 lines (39 loc) · 950 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
39
40
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<meta charset="UTF-8">
<style type="text/css" >
body {
min-width: 300px;
max-width: 100%;
position: relative;
vertical-align:middle;
}
input{width:85px;}
</style >
</head>
<body>
<select id="position">
<option value="tl">Góra lewo</option>
<option value="tr">Góra prawo</option>
<option value="bl">Dół lewo</option>
<option value="br">Dół prawo</option>
</select>
<div>
<input type="text" id="maxDays" /> Ile dni do rozgrzania?
</div>
<div>
<input type="checkbox" id="addedDate" /> Data dodania
</div>
<div>
<input type="checkbox" id="modDate" /> Data Modyfikacji
</div>
<div>
<input type="checkbox" id="days" /> Dni na portalu
</div>
<div id="status"></div>
<button id="save">Zapisz</button>
<script src="options.js"></script>
</body>
</html>