summaryrefslogtreecommitdiffstats
path: root/popup.html
blob: 0946cc2546ef6d09a0c5d6b71168d482f4970419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<style>
body {
	font-family: sans-serif;
	margin: 0;
	width: 200px;
	height: 110px;
}
</style>
<script src="script.js"></script>
</head>
<body>
<label><input type="radio" name="proxy" value="socks5://localhost:1080" />socks5://localhost:1080</label><br />
<label><input type="radio" name="proxy" value="socks5://localhost:9050" />socks5://localhost:9050</label><br />
<label><input type="radio" name="proxy" value="http://localhost:8080" />http://localhost:8080</label><br />
<label><input type="radio" name="proxy" value="other" /><input id="other" /></label><br />
<label><input type="radio" name="proxy" value="system" />system</label><br />
<label><input type="radio" name="proxy" value="direct" />direct</label><br />
<label><input type="checkbox" name="google" />exclude google</label>
</body>
</html>