options.html 1.7 KB

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