chromium-proxy-settings/options.html

24 lines
430 B
HTML
Raw Normal View History

2024-02-18 08:28:00 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Proxy Settings</title>
<script src="options.js"></script>
</head>
<body>
<form id="proxySettings">
<label>Active:</label>
<input type="checkbox" id="proxyActive">
<br>
<label>Host:</label>
<input type="text" id="proxyHost">
<label>Port:</label>
<input type="number" id="proxyPort">
<br>
<input type="submit" value="Save">
</form>
</body>
</html>