diff options
Diffstat (limited to 'data/extensions/https-everywhere@eff.org/popup.html')
-rw-r--r-- | data/extensions/https-everywhere@eff.org/popup.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/data/extensions/https-everywhere@eff.org/popup.html b/data/extensions/https-everywhere@eff.org/popup.html new file mode 100644 index 0000000..e650c04 --- /dev/null +++ b/data/extensions/https-everywhere@eff.org/popup.html @@ -0,0 +1,76 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <title data-i18n="about_ext_name"></title> + + <link href="popup.css" rel="stylesheet"> + <script src="popup.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> + </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>)</small></p> + </footer> + + </body> +</html> |