-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
41 lines (41 loc) · 1.42 KB
/
Copy pathpopup.html
File metadata and controls
41 lines (41 loc) · 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Proxy Settings</title>
<link rel="stylesheet" type="text/css" href="popup.css"/>
</head>
<body>
<img id="icon" src="images/icon-48.png" align="right">
<div class="warn" id="warn" style="display: none;">
<h2 style="margin-left: 5px;">
<br>Attention!<br>
</h2>
<h3 style="text-align: center; margin-left: 10px; margin-right: 10px;">
For this extension<br>
to work properly,<br>
please allow it<br>
to access private<br>
browsing mode.
</h3>
</div>
<h3 id="header">Proxy Settings</h3>
<div class="form" id="form">
<label class="labels" for="proxyHost">Proxy Host:</label><br>
<input class="inputs" type="text" id="proxyHost" name="proxyHost" value="127.0.0.1">
<br>
<label class="labels" for="proxyPort">Proxy Port: </label><br>
<input class="inputs" type="text" id="proxyPort" name="proxyPort" value="443">
<br><br>
<label class="labels" for="passthrough">Passthrough:</label><br>
<textarea class="inputs" rows="3" cols="22" style="resize:none;" id="passthrough" name="passthrough"></textarea>
</div>
<br>
<div class="buttons" id="buttons">
<input type="submit" id="disableBtn" value="Disable">
<input type="submit" id="enableBtn" value="Enable">
<br><br>
</div>
<script src="popup.js"></script>
</body>
</html>