forked from FiftyNine/scpper-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
125 lines (125 loc) · 3.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>__MSG_OPTIONS_TITLE__</title>
<style>
body {
margin: 0px;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: verdana,arial;
font-size: 0.9em;
}
h1,h2 {
margin: 0px;
padding-top: 10px;
padding-left: 10px;
color: rgb(153, 0, 17);
font-size: 150%;
font-weight: normal;
}
h1 {
font-size: 200%;
vertical-align: middle;
}
h2.first {
padding-top: 20px;
}
div.settings {
background: linear-gradient(#eee, white);
}
p {
margin: 5px;
}
p#status {
text-indent: 10px;
font-style: italic;
}
p.footnote {
font-size: 0.75em;
}
a {
color: #b01;
text-decoration: none;
background: transparent;
}
a:hover {
text-decoration: underline;
background: transparent;
}
</style>
<script src="constants.js"></script>
<script src="options.js"></script>
</head>
<body>
<div class="settings">
<h1>
<table>
<tbody>
<tr>
<td>
<img src="scp-logo-signature.png"/>
</td>
<td/>
<td>
__MSG_OPTIONS_HEADER__
</td>
</tr>
</tbody>
</table>
</h1>
<h2 class="first">__MSG_OPTIONS_WIKI_SETTINGS_HEADER__</h2>
<p>
<label>
<input type="checkbox" id="use-linkifier">
__MSG_OPTIONS_USE_LINKIFIER__
</label>
<select id="linkifier-template">
<option value="strict">__MSG_OPTIONS_LINKIFIER_STRICT_TEMPLATE__</option>
<option value="lax">__MSG_OPTIONS_LINKIFIER_LAX_TEMPLATE__</option>
<option value="smart">__MSG_OPTIONS_LINKIFIER_SMART_TEMPLATE__</option>
</select>
</p>
<p>
<label>
<input type="checkbox" id="author-page-link">
__MSG_OPTIONS_AUTHOR_PAGE__
</label>
</p>
<p>
<label>
<input type="checkbox" id="article-name-title">
__MSG_OPTIONS_ARTICLE_NAME_IN_TITLE__
</label>
</p>
<p>
<label>
<input type="checkbox" id="page-info-footer">
__MSG_OPTIONS_PAGE_INFO_IN_FOOTER__
</label>
</p>
<p>
<label>
<input type="checkbox" id="override-forum">
__MSG_OPTIONS_FORUM_PAGES_HISTORY__
</label>
</p>
<h2>__MSG_OPTIONS_GLOBAL_SETTINGS_HEADER__</h2>
<p>
<label>
<input type="checkbox" id="link-tooltips">
__MSG_OPTIONS_TOOLTIP_NAMES__
</label>
</p>
<p id="status">
</p>
<hr>
<p class="footnote">
__MSG_OPTIONS_FOOTER_LICENSE__ <a href="https://creativecommons.org/licenses/by-sa/3.0/au/legalcode">__MSG_OPTIONS_FOOTER_LICENSE_NAME__</a>.
<br>
__MSG_OPTIONS_FOOTER_ATTRIBUTION1__ <a href="http://www.scp-wiki.net/">__MSG_OPTIONS_FOOTER_ATTRIBUTION2__</a> __MSG_OPTIONS_FOOTER_ATTRIBUTION3__
</p>
</div>
</body>
</html>