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