| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!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="removeHiddenInput">remove hidden elements
- <img class="question-mark" src="../resources/icon_question_mark.jpg">
- </label>
- <input type="checkbox" id="removeHiddenInput">
- <div class="help">
- <p>Check this option to remove all hidden elements.</p>
- <p class="notice">It is recommended to
- <u>uncheck</u> this option</p>
- </div>
- </div>
- <div class="option">
- <label for="removeUnusedCSSRulesInput">remove unused CSS rules
- <img class="question-mark" src="../resources/icon_question_mark.jpg">
- </label>
- <input type="checkbox" id="removeUnusedCSSRulesInput">
- <div class="help">
- <p>Check this option to remove all CSS rules that do not match any element.</p>
- <p class="notice">It is recommended to
- <u>uncheck</u> this option</p>
- </div>
- </div>
- <div class="option bottom">
- <a href="help.html" target="SingleFileHelpPage">help</a>
- <button id="resetButton" title="Reset all the options to default (i.e. recommended) state">Reset to default options</button>
- </div>
- </div>
- </div>
- <script type="text/javascript" src="../scripts/bg/options.js"></script>
- </body>
- </html>
|