-
Notifications
You must be signed in to change notification settings - Fork 8
/
options.html
60 lines (60 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Proxy Switcher Settings</title>
<link rel="stylesheet" href="options.css">
<script src="settings.js"></script>
<script src="options.js"></script>
</head>
<body>
<table class="table">
<thead>
<tr>
<th>Mode</th>
<th>Value</th>
<th></th>
</tr>
</thead>
<tbody id="list">
<tr>
<td>Direct</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>System</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Auto Detect</td>
<td>-</td>
<td>-</td>
</tr>
<tr id="last">
<td>
<select id="mode">
<option value="fixed_servers" selected>Fixed server</option>
<option value="pac_script">PAC URL</option>
<option value="pac_script_data">PAC script</option>
</select>
</td>
<td id="container"></td>
<td>
<input id="add" type="button" value="add">
</td>
</tr>
</tbody>
</table>
<p>For a fixed server or PAC URL, use <i>scheme://host:port</i>.
<br>Schemes: http, https, quic, socks4 or socks5.
<br>Example: <i>http://localhost:8080</i>
</p>
<p>
PAC URL no longer supports
<i>file://</i>
(<a href="https://bugs.chromium.org/p/chromium/issues/detail?id=839566">#839566</a>),
use PAC script instead and copy the contents.
</p>
</body>
</html>