options.html 500 B

123456789101112131415161718
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Life Scrobbler Options</title>
  6. </head>
  7. <body>
  8. <h2>Life Scrobbler Settings</h2>
  9. <label>Delay (seconds): <input id="delay" type="number" min="1" /></label>
  10. <br /><br />
  11. <label>Blacklist (one per line):</label><br />
  12. <textarea id="blacklist" rows="6" cols="40"></textarea>
  13. <br /><br />
  14. <button id="save">Save</button>
  15. <p id="status"></p>
  16. <script src="options.js"></script>
  17. </body>
  18. </html>