| 123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>SingleFile options</title>
- <script type="text/javascript" src="../scripts/options.js"></script>
- <link rel="stylesheet" href="options.css">
- </head>
- <body onload="load()">
- <div>
- <h2><img alt="icon" id="icon" src="../resources/icon_48.png"/>SingleFile</h2>
- <hr>
- <h4>Options :</h4>
- <div id="popupContent">
- <div>
- <label for="removeFramesInput">remove frames</label> <input type="checkbox" id="removeFramesInput">
- </div>
- <div>
- <label for="removeScriptsInput">remove scripts</label> <input type="checkbox" id="removeScriptsInput">
- </div>
- <div>
- <label for="removeObjectsInput">remove objects</label> <input type="checkbox" id="removeObjectsInput">
- </div>
- <div>
- <label for="removeHiddenInput">remove hidden elements</label> <input type="checkbox" id="removeHiddenInput">
- </div>
- <div>
- <label for="removeUnusedInput">remove unused CSS rules</label> <input type="checkbox" id="removeUnusedInput">
- </div>
- <div>
- <a href="help.html" target="SingleFileHelp">help</a><button id="resetButton">Reset to default options</button>
- </div>
- </div>
- </div>
- </body>
- </html>
|