options.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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="compressHTMLInput">compress HTML</label>
  14. <input type="checkbox" id="compressHTMLInput">
  15. </div>
  16. <div class="option">
  17. <label for="compressCSSInput">compress CSS</label>
  18. <input type="checkbox" id="compressCSSInput">
  19. </div>
  20. <div class="option">
  21. <label for="removeFramesInput">remove frames</label>
  22. <input type="checkbox" id="removeFramesInput">
  23. </div>
  24. <div class="option">
  25. <label for="removeHiddenInput">remove hidden elements</label>
  26. <input type="checkbox" id="removeHiddenInput">
  27. </div>
  28. <div class="option">
  29. <label for="removeUnusedCSSRulesInput">remove unused CSS rules</label>
  30. <input type="checkbox" id="removeUnusedCSSRulesInput">
  31. </div>
  32. <div class="option">
  33. <label for="removeScriptsInput">remove scripts</label>
  34. <input type="checkbox" id="removeScriptsInput">
  35. </div>
  36. <div class="option">
  37. <label for="saveRawPageInput">save raw page</label>
  38. <input type="checkbox" id="saveRawPageInput">
  39. </div>
  40. <div class="option">
  41. <label for="contextMenuEnabledInput">add SingleFile entry in the context menu</label>
  42. <input type="checkbox" id="contextMenuEnabledInput">
  43. </div>
  44. <div class="option">
  45. <label for="contextMenuEnabledInput">append save date to the filename</label>
  46. <input type="checkbox" id="appendSaveDateInput">
  47. </div>
  48. <div class="option bottom">
  49. <a href="help.html" target="SingleFileHelpPage">help</a>
  50. <button id="resetButton" title="Reset all the options to default values">Reset</button>
  51. </div>
  52. </div>
  53. </div>
  54. <script type="text/javascript" src="../scripts/bg/options.js"></script>
  55. </body>
  56. </html>