blob: 67b5be04c76b208fc8ec5c9f4649fedbfb4cee9e (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="popup.css"/>
<link rel="stylesheet" type="text/css" href="explore/explore.css"/>
</head>
<body>
<div class="content">
<table class="controls">
<tr>
<td title="Connect to TOR proxy" id="ON"></td>
<td title="Disconnect from TOR proxy" id="OFF"></td>
</tr>
<tr><td colspan=2><p class="description">Do not use proxy for the following addresses (comma separated)</p></td></tr>
<tr><td colspan=2><textarea id="whitelist" placeholder="i.e. <local>, foobar.com, *foobar.com, *.foobar.com, *foobar.com:99, https://x.*.y.com:99"></textarea></td></tr>
<tr>
<td colspan=2>
<table class="footer">
<tr>
<td id="status">Onion Browser Button</td>
<td id="install" title="Open github repo to get TOR patch files"></td>
<td id="reload" title="Reload current tab"></td>
<td id="check" title="Check tor connection via: check.torproject.org"></td>
<td id="support" title="Open support page"></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<script src="popup.js"></script>
</body>
</html>
|