Initial commit

This commit is contained in:
2025-09-23 00:29:33 +02:00
commit 4f120b68f5
14 changed files with 394 additions and 0 deletions

19
options.html Normal file
View File

@@ -0,0 +1,19 @@
<!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>