help.html 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>SingleFile help</title>
  6. <link rel="stylesheet" href="help.css">
  7. </head>
  8. <body>
  9. <div>
  10. <div id="titleBorder">
  11. <h2>SingleFile</h2>
  12. <h4>Archive a complete page into a single HTML file</h4>
  13. </div>
  14. <span id="index">
  15. <a href="#instructions">Instructions</a> -
  16. <a href="#options">Options description</a> -
  17. <a href="#notes">Technical notes</a> -
  18. <a href="#unknownIssues">Unknown issues</a>
  19. </span>
  20. <hr>
  21. <ol>
  22. <li>
  23. <a id="instructions">Instructions</a>
  24. <ul>
  25. <li>wait until the page is fully loaded: you may need to scroll down the entire page to be sure all elements are loaded</li>
  26. <li>click on the SingleFile button
  27. <img src="../resources/icon_19.png" class="icon"> in the extension toolbar</li>
  28. </ul>
  29. <p>Additional notes:</p>
  30. <ul>
  31. <li>You can select multiple tabs and save them by clicking on the SingleFile button
  32. <img src="../resources/icon_19.png" class="icon">.</li>
  33. </ul>
  34. </li>
  35. <li>
  36. <a id="options">Options description</a>
  37. <p>You can customize the way SingleFile process a document through the options page. Right-click on SingleFile button
  38. <img src="../resources/icon_19.png" class="icon"> in the browser toolbar and select "Options" in the context menu to open the options page.</p>
  39. <p>Details :</p>
  40. <ul>
  41. <li>
  42. <span class="option">remove hidden elements</span>
  43. <p>Check this option to remove all hidden elements (
  44. <code>visibility = "hidden"</code>,&nbsp;or&nbsp;
  45. <code>display = "none"</code>,&nbsp;or&nbsp;
  46. <code>opacity = "0"</code> CSS property values). This option may alter the document but can considerably reduce the size of the file.</p>
  47. <p class="notice">It is recommended to
  48. <u>uncheck</u> this option</p>
  49. </li>
  50. <li>
  51. <span class="option">remove unused CSS rules</span>
  52. <p>Check this option to remove all CSS rules that do not match any element. This option may alter the document but can
  53. considerably reduce the size of the file. Checking this option may also introduce some incompatibilities issues in
  54. the saved page when opening it into another browser (i.e. not based on Chromium).</p>
  55. <p class="notice">It is recommended to
  56. <u>uncheck</u> this option</p>
  57. </li>
  58. <li>
  59. <span class="option">Reset to default options</span>
  60. <p>Reset all the options to default state.</p>
  61. </li>
  62. </ul>
  63. </li>
  64. <li>
  65. <a id="notes">Technical notes</a>
  66. <ul>
  67. <li>all images are converted into
  68. <a href="http://en.wikipedia.org/wiki/Base64">base64</a>
  69. </li>
  70. <li>resources are injected in the document using
  71. <a href="http://en.wikipedia.org/wiki/Data_URI_scheme">data URI scheme</a>
  72. </li>
  73. <li>data URI scheme is supported by all modern browsers.</li>
  74. </ul>
  75. </li>
  76. <li>
  77. <a id="unknownIssues">Unknown issues</a>
  78. <p>If you find an unknown issue (i.e. frozen process, extra saved files, blank or altered document, tab crash...):</p>
  79. <ul>
  80. <li>reset SingleFile options</li>
  81. <li>if resetting options did not work, try to disable all other extensions to see if there is a conflict</li>
  82. <li>if there is a conflict then try to determine against which extension(s)</li>
  83. <li>please report the issue
  84. <a href="https://github.com/gildas-lormeau/SingleFile/issues">here</a> with a short description describing how to reproduce the issue, Browser version, OS name and version.</li>
  85. </ul>
  86. </li>
  87. </ol>
  88. </div>
  89. </body>
  90. </html>