This repository was archived by the owner on Apr 19, 2021. It is now read-only.
forked from EFForg/https-everywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
executable file
·57 lines (50 loc) · 2.3 KB
/
popup.html
File metadata and controls
executable file
·57 lines (50 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<head>
<title i18n="about_ext_name"></title>
<!-- Local copy of chrome://resources/css/chrome_shared.css -->
<link href="chrome-resources/css/chrome_shared.css" rel="stylesheet" type="text/css"/>
<link href="popup.css" rel="stylesheet" type="text/css"/>
<script src="popup.js"></script>
</head>
<body>
<header>
<h1 i18n="about_ext_name"></h1>
</header>
<section id="HttpNowhere" class="options">
<input id="http-nowhere-checkbox" type="checkbox" value="httpNowhere"/>
<label i18n="menu_blockHttpRequests" for="http-nowhere-checkbox"
></label>
</section>
<section>
<a href="#" id="add-rule-link" i18n="menu_add_rule"></a>
<div id="add-new-rule-div" style="display:none">
<h3 i18n="about_add_new_rule"> </h3>
<p i18n="menu_always_https_for_host"></p>
<label for="new-rule-host" i18n="menu_host"></label> <br><input size="50" id="new-rule-host" type="text" disabled><br>
<div id="new-rule-regular-text">
<p><a href="#" id="new-rule-show-advanced-link" i18n="menu_show_advanced"></a>
</div>
<div id="new-rule-advanced" style="display:none;">
<p><a href="#" id="new-rule-hide-advanced-link" i18n="menu_hide_advanced"></a>
<p>
<label for="new-rule-name" i18n="menu_rule_name"></label><br><input size="50" id="new-rule-name" type="text"><br>
<label for="new-rule-regex" i18n="menu_regex"></label> <br><input size="50" id="new-rule-regex" type="text"><br>
<label for="new-rule-redirect" i18n="menu_redirect_to"></label> <br><input size="50" id="new-rule-redirect" type="text"><br>
</div>
<button id="add-new-rule-button" i18n="menu_add_new_rule"></button><br>
<button id="cancel-new-rule" i18n="status_cancel_button"></button>
</div>
</section>
<section id="StableRules" class="rules">
<h3 i18n="chrome_stable_rules"></h3>
<p class="description" i18n="chrome_stable_rules_description"></p>
</section>
<section id="UnstableRules" class="rules">
<h3 i18n="chrome_experimental_rules"></h3>
<p class="description" i18n="chrome_experimental_rules_description"></p>
</section>
<footer>
<a id="whatIsThis" href="https://www.eff.org/https-everywhere" target="_blank" tabindex="-1" i18n="chrome_what_is_this"></a>
<p><small>(Version: <span id="current-version"></span>)</small></p>
<!-- <a href="" title="HTTPS Everywhere Options">Options</a> -->
</footer>
</body>