options.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <h3>Options</h3>
  12. <h4>User interface</h4>
  13. <div class="option">
  14. <label for="contextMenuEnabledInput">add entry in the context menu</label>
  15. <input type="checkbox" id="contextMenuEnabledInput">
  16. </div>
  17. <h4>Filename</h4>
  18. <div class="option">
  19. <label for="appendSaveDateInput">append the save date to the filename</label>
  20. <input type="checkbox" id="appendSaveDateInput">
  21. </div>
  22. <h4>Page content</h4>
  23. <div class="option">
  24. <label for="lazyLoadImagesInput">load lazy loaded images</label>
  25. <input type="checkbox" id="lazyLoadImagesInput">
  26. </div>
  27. <div class="option">
  28. <label for="compressHTMLInput">compress HTML</label>
  29. <input type="checkbox" id="compressHTMLInput">
  30. </div>
  31. <div class="option">
  32. <label for="compressCSSInput">compress CSS</label>
  33. <input type="checkbox" id="compressCSSInput">
  34. </div>
  35. <div class="option">
  36. <label for="removeFramesInput">remove frames</label>
  37. <input type="checkbox" id="removeFramesInput">
  38. </div>
  39. <div class="option">
  40. <label for="removeImportsInput">remove HTML imports</label>
  41. <input type="checkbox" id="removeImportsInput">
  42. </div>
  43. <div class="option">
  44. <label for="removeScriptsInput">remove scripts</label>
  45. <input type="checkbox" id="removeScriptsInput">
  46. </div>
  47. <div class="option">
  48. <label for="removeHiddenInput">remove hidden elements</label>
  49. <input type="checkbox" id="removeHiddenInput">
  50. </div>
  51. <div class="option">
  52. <label for="removeUnusedCSSRulesInput">remove unused CSS rules</label>
  53. <input type="checkbox" id="removeUnusedCSSRulesInput">
  54. </div>
  55. <div class="option">
  56. <label for="saveRawPageInput">save raw page</label>
  57. <input type="checkbox" id="saveRawPageInput">
  58. </div>
  59. <div class="option bottom">
  60. <a href="help.html" target="SingleFileHelpPage">help</a>
  61. <button id="resetButton" title="Reset all the options to default values">Reset</button>
  62. </div>
  63. </div>
  64. </div>
  65. <script type="text/javascript" src="../scripts/bg/options.js"></script>
  66. </body>
  67. </html>