| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>SingleFile options</title>
- <link rel="stylesheet" href="options.css">
- </head>
- <body>
- <div>
- <div id="popupContent">
- <h4>Options</h4>
- <div class="option">
- <label for="compressHTMLInput">compress HTML</label>
- <input type="checkbox" id="compressHTMLInput">
- </div>
- <div class="option">
- <label for="compressCSSInput">compress CSS</label>
- <input type="checkbox" id="compressCSSInput">
- </div>
- <div class="option">
- <label for="removeFramesInput">remove frames</label>
- <input type="checkbox" id="removeFramesInput">
- </div>
- <div class="option">
- <label for="removeHiddenInput">remove hidden elements</label>
- <input type="checkbox" id="removeHiddenInput">
- </div>
- <div class="option">
- <label for="removeUnusedCSSRulesInput">remove unused CSS rules</label>
- <input type="checkbox" id="removeUnusedCSSRulesInput">
- </div>
- <div class="option">
- <label for="removeScriptsInput">remove scripts</label>
- <input type="checkbox" id="removeScriptsInput">
- </div>
- <div class="option">
- <label for="saveRawPageInput">save raw page</label>
- <input type="checkbox" id="saveRawPageInput">
- </div>
- <div class="option">
- <label for="contextMenuEnabledInput">add SingleFile entry in the context menu</label>
- <input type="checkbox" id="contextMenuEnabledInput">
- </div>
- <div class="option">
- <label for="contextMenuEnabledInput">append save date to the filename</label>
- <input type="checkbox" id="appendSaveDateInput">
- </div>
- <div class="option bottom">
- <a href="help.html" target="SingleFileHelpPage">help</a>
- <button id="resetButton" title="Reset all the options to default values">Reset</button>
- </div>
- </div>
- </div>
- <script type="text/javascript" src="../scripts/bg/options.js"></script>
- </body>
- </html>
|