options.html 867 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>SingleFile options</title>
  6. <link rel="stylesheet" href="options.css">
  7. </head>
  8. <body>
  9. <div>
  10. <div id="popupContent">
  11. <h4>Options</h4>
  12. <div class="option">
  13. <label for="removeHiddenInput">remove hidden elements</label>
  14. <input type="checkbox" id="removeHiddenInput">
  15. </div>
  16. <div class="option">
  17. <label for="removeUnusedCSSRulesInput">remove unused CSS rules</label>
  18. <input type="checkbox" id="removeUnusedCSSRulesInput">
  19. </div>
  20. <div class="option bottom">
  21. <a href="help.html" target="SingleFileHelpPage">help</a>
  22. <button id="resetButton" title="Reset all the options to default values">Reset</button>
  23. </div>
  24. </div>
  25. </div>
  26. <script type="text/javascript" src="../scripts/bg/options.js"></script>
  27. </body>
  28. </html>