blob: f70b65662dd360fadbbd1c9086ac0011bf40bdd6 (
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
35
|
<!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 TOR 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">Tor Browser Button</td>
<td id="install" title="Open github repo to get TOR patch files"></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>
<div id="explore"></div>
<script async src="explore/explore.js"></script>
<script src="popup.js"></script>
</body>
</html>
|