PrivateKeyboardAddon/settings/options.html

30 lines
809 B
HTML
Raw Normal View History

2021-08-08 19:49:22 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2021-09-21 04:47:40 +00:00
<link rel="stylesheet" href="options.css">
2021-08-08 19:49:22 +00:00
</head>
<body>
<form>
2021-10-12 07:34:19 +00:00
<input type="checkbox" id="usePrompt">
2021-10-12 18:36:09 +00:00
<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>
2021-10-12 07:34:19 +00:00
<br>
2021-09-21 04:47:40 +00:00
<input type="checkbox" id="whitelistLAN">
<label for="whitelistLAN">Whitelist private IP + localhost range hostnames (e.g. routers)</label>
<h1>Trusted domains (comma delimited)</h1>
2021-08-08 19:49:22 +00:00
<textarea id="whitelist" cols=50 rows=10></textarea>
<br><br>
<button type="submit">Save</button>
</form>
<script src="options.js"></script>
2021-09-21 04:47:40 +00:00
<div id="saved"><br></div>
2021-08-08 19:49:22 +00:00
</body>
</html>