Files
vrobbler-firefox-extension/options.html
2025-10-07 16:01:32 -04:00

19 lines
500 B
HTML

<!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>