| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!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">
- <script type="text/javascript" src="../scripts/bg/options.js"></script>
- </head>
- <body>
- <div>
- <h2><img alt="SingleFile icon" id="icon" src="../resources/icon_48.png"/>SingleFile</h2>
- <hr>
- <div id="popupContent">
- <h4>Basic options:</h4>
- <div class="option">
- <label for="removeFramesInput">remove frames</label> <input type="checkbox" id="removeFramesInput">
- </div>
- <div class="option">
- <label for="removeObjectsInput">remove objects</label> <input type="checkbox" id="removeObjectsInput">
- </div>
- <div class="option">
- <label for="removeScriptsInput">remove scripts</label> <input type="checkbox" id="removeScriptsInput">
- </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="getContentInput">scrapbook the page</label> <input type="checkbox" id="getContentInput">
- </div>
- <h4>Advanced options:</h4>
- <div class="option">
- <label for="processInBackgroundInput">process in background</label> <input type="checkbox" id="processInBackgroundInput">
- </div>
- <div id="storageOptions">
- <div class="option">
- <label for="savePageInput">save processed page</label> <input type="checkbox" id="savePageInput">
- </div>
- <div class="option">
- <label for="displayProcessedPageInput">display processed page</label> <input type="checkbox" id="displayProcessedPageInput">
- </div>
- <div class="option">
- <label for="filenameMaxLengthInput">max filename length</label> <input type="text" id="filenameMaxLengthInput">
- </div>
- </div>
- <div class="option">
- <label for="getRawDocInput">process raw document</label> <input type="checkbox" id="getRawDocInput">
- </div>
- <div class="option">
- <a href="help.html" target="SingleSileHelpPage">help</a><button id="resetButton">Reset to default options</button>
- </div>
- </div>
- </div>
- </body>
- </html>
|