19 lines
564 B
HTML
19 lines
564 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Extension Options</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; padding: 12px; }
|
|
label { display:block; margin-bottom:8px }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Options</h1>
|
|
<label>Favorite color: <input id="favcolor" type="text" placeholder="e.g. teal" /></label>
|
|
<button id="save">Save</button>
|
|
<div id="msg"></div>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html> |