forked from abstiles/deluminate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
72 lines (67 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html>
<head>
<title>Deluminate Options</title>
<style type="text/css">
body {
max-width: 800px;
padding: 0.75em;
}
* {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFF;
background-color: #000;
}
a {
color: #8BF;
}
a:visited {
color: #B8F;
}
h2 {
font-size: 12pt;
}
button {
margin: 0.75em 0 0.25em 0;
padding: 0.5em 1.5em;
}
button#toggle {
font-size: 12pt;
}
#settings {
width: 100%;
height: 50em;
overflow: scroll;
-webkit-box-sizing: border-box;
}
label {
white-space: nowrap;
display: block;
}
</style>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="options.js"></script>
</head>
<body style="background-color: #000">
<h2 id="title" tabIndex="0">Deluminate Options</h2>
<fieldset>
<legend id="global_settings">Global Settings</legend>
<label>
Experimental detection of animated gifs in "Smart" mode. (WARNING:
<em>will</em> slow things down.)
<select id="detect_animation">
<option value="disabled" selected>Disabled</option>
<option value="enabled">Enabled</option>
</select>
</label>
</fieldset>
<h3>Saved Site Customizations</h3>
<textarea readonly id="settings"></textarea>
<button id="forget">Forget site customizations</button>
<hr>
<a href="https://github.com/abstiles/deluminate/issues/new" id="issues">
Something wrong? Let me know!
</a>
</body>
</html>