options.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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
  14. <img class="question-mark" src="../resources/icon_question_mark.jpg">
  15. </label>
  16. <input type="checkbox" id="removeHiddenInput">
  17. <div class="help">
  18. <p>Check this option to remove all hidden elements.</p>
  19. <p class="notice">It is recommended to
  20. <u>uncheck</u> this option</p>
  21. </div>
  22. </div>
  23. <div class="option">
  24. <label for="removeUnusedCSSRulesInput">remove unused CSS rules
  25. <img class="question-mark" src="../resources/icon_question_mark.jpg">
  26. </label>
  27. <input type="checkbox" id="removeUnusedCSSRulesInput">
  28. <div class="help">
  29. <p>Check this option to remove all CSS rules that do not match any element.</p>
  30. <p class="notice">It is recommended to
  31. <u>uncheck</u> this option</p>
  32. </div>
  33. </div>
  34. <div class="option bottom">
  35. <a href="help.html" target="SingleFileHelpPage">help</a>
  36. <button id="resetButton" title="Reset all the options to default (i.e. recommended) state">Reset to default options</button>
  37. </div>
  38. </div>
  39. </div>
  40. <script type="text/javascript" src="../scripts/bg/options.js"></script>
  41. </body>
  42. </html>