forked from drnorthcott/chrome-default-encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
37 lines (34 loc) · 823 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
<!DOCTYPE html>
<html>
<head><title>Webpage Default Encoding Changer Options</title></head>
<body>
<table>
<colgroup>
<col span="2">
</colgroup>
<tr>
<th>URL Pattern</th>
<th>Default Encoding</th>
</tr>
<tr>
<td>
<input type="text" id="url_pattern" name="url_pattern">
</td>
<td>
<select id="default_encoding">
<option value="UTF-8">Unicode (UTF-8)</option>
<option value="ISO-8859-1">Latin-1 ISO-8059-1</option>
<option value="US-ASCII">ASCII (US-ASCII)</option>
<option value="CP-1252">Windows (CP-1252)</option>
<option value="ISO-2022-JP">Japanese (ISO-2022-JP)</option>
<option value="Shift_JIS">Shift JIS</option>
<option value="Big5">Big5</option>
</select>
</td>
</tr>
</table>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>