diff options
Diffstat (limited to 'data/extensions/https-everywhere@eff.org/pages/popup/index.html')
-rw-r--r-- | data/extensions/https-everywhere@eff.org/pages/popup/index.html | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/data/extensions/https-everywhere@eff.org/pages/popup/index.html b/data/extensions/https-everywhere@eff.org/pages/popup/index.html new file mode 100644 index 0000000..21dac99 --- /dev/null +++ b/data/extensions/https-everywhere@eff.org/pages/popup/index.html @@ -0,0 +1,84 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title data-i18n="about_ext_name"></title> + + <link href="style.css" rel="stylesheet"> + <script src="ux.js"></script> + <script src="../translation.js"></script> + <script src="../send-message.js"></script> + </head> + <body> + <header> + <h1 data-i18n="about_ext_name"></h1> + </header> + + <section id="disableButton" class="options" style="visibility: hidden;"> + <div class="onoffswitch"> + <input id="onoffswitch" type="checkbox" checked><label data-i18n="menu_globalEnable" for="onoffswitch"></label> + </div> + </section> + + <section id="HttpNowhere" class="options" style="visibility: hidden;"> + <input id="http-nowhere-checkbox" type="checkbox"><label data-i18n="menu_blockUnencryptedRequests" for="http-nowhere-checkbox"></label> + </section> + + <div id="RuleManagement"> + <section> + <a href="javascript:void 0" id="add-rule-link" data-i18n="chrome_add_rule"></a> + <div id="add-new-rule-div" style="display: none"> + <h3 data-i18n="about_add_new_rule"></h3> + <p data-i18n="chrome_always_https_for_host"></p> + <label for="new-rule-host" data-i18n="chrome_host"></label><br> + <input size="50" id="new-rule-host" type="text" disabled><br> + <div id="new-rule-regular-text"> + <a href="javascript:void 0" id="new-rule-show-advanced-link" data-i18n="chrome_show_advanced"></a><br> + </div> + <div id="new-rule-advanced" style="display: none"> + <a href="javascript:void 0" id="new-rule-hide-advanced-link" data-i18n="chrome_hide_advanced"></a><br> + <br> + <label for="new-rule-name" data-i18n="chrome_rule_name"></label><br> + <input size="50" id="new-rule-name" type="text"><br> + <label for="new-rule-regex" data-i18n="chrome_regex"></label><br> + <input size="50" id="new-rule-regex" type="text"><br> + <label for="new-rule-redirect" data-i18n="chrome_redirect_to"></label><br> + <input size="50" id="new-rule-redirect" type="text"><br> + </div> + <button id="add-new-rule-button" data-i18n="chrome_add_new_rule"></button><br> + <button id="cancel-new-rule" data-i18n="chrome_status_cancel_button"></button> + </div> + </section> + + <section id="StableRules" class="rules"> + <h3 data-i18n="chrome_stable_rules"></h3> + <p class="description" data-i18n="chrome_stable_rules_description"></p> + </section> + + <section id="UnstableRules" class="rules"> + <h3 data-i18n="chrome_experimental_rules"></h3> + <p class="description" data-i18n="chrome_experimental_rules_description"></p> + </section> + + <section id="resetButton" class="options"> + <a href="javascript:void 0" id="reset-to-defaults" data-i18n="prefs_reset_defaults"></a> + </section> + </div> + + <footer> + <a id="viewAllRules" href="https://www.eff.org/https-everywhere/atlas" target="_blank" data-i18n="menu_viewAllRules"></a><br> + <br> + <a id="aboutTitle" href="https://www.eff.org/https-everywhere" target="_blank" data-i18n="about_title"></a><br> + <br> + <a id="donateEFF" href="https://supporters.eff.org/donate/support-https-everywhere" target="_blank" data-i18n="menu_donate_eff_imperative"></a> + <p> + <small> + <span data-i18n="about_version">Version</span>: <span id="current-version"></span> + <span id="rulesets-versions"> + </span> + </small> + </p> + </footer> + + </body> +</html> |