30 lines
809 B
HTML
30 lines
809 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="options.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form>
|
|
<input type="checkbox" id="usePrompt">
|
|
<label for="usePrompt">Use prompt() dialogs on single-line inputs. Faster typing and less CPU usage, but can break some websites and features like autocomplete.</label>
|
|
<br>
|
|
<input type="checkbox" id="whitelistLAN">
|
|
<label for="whitelistLAN">Whitelist private IP + localhost range hostnames (e.g. routers)</label>
|
|
<h1>Trusted domains (comma delimited)</h1>
|
|
<textarea id="whitelist" cols=50 rows=10></textarea>
|
|
<br><br>
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
|
|
<script src="options.js"></script>
|
|
|
|
<div id="saved"><br></div>
|
|
|
|
</body>
|
|
|
|
</html>
|