options.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <script type="text/javascript" src="../scripts/options.js"></script>
  7. <link rel="stylesheet" href="options.css">
  8. </head>
  9. <body onload="load()">
  10. <div>
  11. <h2><img alt="icon" id="icon" src="../resources/icon_48.png"/>SingleFile</h2>
  12. <hr>
  13. <h4>Options :</h4>
  14. <div id="popupContent">
  15. <div>
  16. <label for="removeFramesInput">remove frames</label> <input type="checkbox" id="removeFramesInput">
  17. </div>
  18. <div>
  19. <label for="removeScriptsInput">remove scripts</label> <input type="checkbox" id="removeScriptsInput">
  20. </div>
  21. <div>
  22. <label for="removeObjectsInput">remove objects</label> <input type="checkbox" id="removeObjectsInput">
  23. </div>
  24. <div>
  25. <label for="removeHiddenInput">remove hidden elements</label> <input type="checkbox" id="removeHiddenInput">
  26. </div>
  27. <div>
  28. <label for="removeUnusedInput">remove unused CSS rules</label> <input type="checkbox" id="removeUnusedInput">
  29. </div>
  30. <div>
  31. <a href="help.html" target="SingleFileHelp">help</a><button id="resetButton">Reset to default options</button>
  32. </div>
  33. </div>
  34. </div>
  35. </body>
  36. </html>