Add initial files

This commit is contained in:
2025-10-07 16:01:32 -04:00
commit 180108e4c2
8 changed files with 169 additions and 0 deletions

18
options.html Normal file
View File

@ -0,0 +1,18 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Life Scrobbler Options</title>
</head>
<body>
<h2>Life Scrobbler Settings</h2>
<label>Delay (seconds): <input id="delay" type="number" min="1" /></label>
<br /><br />
<label>Blacklist (one per line):</label><br />
<textarea id="blacklist" rows="6" cols="40"></textarea>
<br /><br />
<button id="save">Save</button>
<p id="status"></p>
<script src="options.js"></script>
</body>
</html>