options.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <script type="text/javascript" src="../scripts/bg/options.js"></script>
  8. </head>
  9. <body>
  10. <div>
  11. <h2><img alt="SingleFile icon" id="icon" src="../resources/icon_48.png"/>SingleFile</h2>
  12. <hr>
  13. <div id="popupContent">
  14. <h4>Basic options:</h4>
  15. <div class="option">
  16. <label for="removeFramesInput">remove frames</label> <input type="checkbox" id="removeFramesInput">
  17. </div>
  18. <div class="option">
  19. <label for="removeObjectsInput">remove objects</label> <input type="checkbox" id="removeObjectsInput">
  20. </div>
  21. <div class="option">
  22. <label for="removeScriptsInput">remove scripts</label> <input type="checkbox" id="removeScriptsInput">
  23. </div>
  24. <div class="option">
  25. <label for="removeHiddenInput">remove hidden elements</label> <input type="checkbox" id="removeHiddenInput">
  26. </div>
  27. <div class="option">
  28. <label for="removeUnusedCSSRulesInput">remove unused CSS rules</label> <input type="checkbox" id="removeUnusedCSSRulesInput">
  29. </div>
  30. <div class="option">
  31. <label for="getContentInput">scrapbook the page</label> <input type="checkbox" id="getContentInput">
  32. </div>
  33. <h4>Advanced options:</h4>
  34. <div class="option">
  35. <label for="processInBackgroundInput">process in background</label> <input type="checkbox" id="processInBackgroundInput">
  36. </div>
  37. <div id="storageOptions">
  38. <div class="option">
  39. <label for="savePageInput">save processed page</label> <input type="checkbox" id="savePageInput">
  40. </div>
  41. <div class="option">
  42. <label for="displayProcessedPageInput">display processed page</label> <input type="checkbox" id="displayProcessedPageInput">
  43. </div>
  44. <div class="option">
  45. <label for="filenameMaxLengthInput">max filename length</label> <input type="text" id="filenameMaxLengthInput">
  46. </div>
  47. </div>
  48. <div class="option">
  49. <label for="getRawDocInput">process raw document</label> <input type="checkbox" id="getRawDocInput">
  50. </div>
  51. <div class="option">
  52. <a href="help.html" target="SingleSileHelpPage">help</a><button id="resetButton">Reset to default options</button>
  53. </div>
  54. </div>
  55. </div>
  56. </body>
  57. </html>