blob: 9b6d6191c4a7907959c91bda821d639f393d45c6 (
about) (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<!doctype html>
<!--
Copyright (C) 2021 Wojtek Kosior
Redistribution terms are gathered in the `copyright' file.
-->
<html>
<head>
<meta charset="utf-8"/>
<title>Hachette - page settings</title>
<style>
input[type="radio"], input[type="checkbox"] {
display: none;
}
body {
width: 300px;
height: 300px;
}
.show_next:not(:checked)+* {
display: none;
}
.hide {
display: none;
}
#possible_patterns_chbx:not(:checked)+label span#triangle:first-child+span,
#possible_patterns_chbx:not(:checked)+label+*,
#possible_patterns_chbx:checked+label span#triangle:first-child {
display: none;
}
#container_for_injected>#none_injected:not(:last-child) {
display: none;
}
input#connected_chbx:checked+div+h3 {
display: none;
}
</style>
</head>
<body>
<!-- The invisible div below is for elements that will be cloned. -->
<div class="hide">
<li id="pattern_li_template">
<span></span>
<button>View in settings</button>
</li>
</div>
<h2 id="page_url_heading"></h2>
<input id="show_privileged_notice_chbx" type="checkbox" class="show_next"></input>
<h3>Privileged page</h3>
<input id="show_page_state_chbx" type="checkbox" class="show_next"></input>
<div>
<input id="possible_patterns_chbx" type="checkbox"></input>
<label for="possible_patterns_chbx">
<h3>
<span id="triangle">⏵</span><span>⏷</span>
Possible patterns
</h3>
</label>
<ul id="possible_patterns"></ul>
<input id="connected_chbx" type="checkbox" class="show_next"></input>
<div>
<h3>
Matched pattern: <span id="pattern">...</span>
<button id="view_pattern" class="hide">
View in settings
</button>
</h3>
<h3>
Blocked: <span id="blocked">...</span>
</h3>
<h3>
Payload: <span id="payload">...</span>
<button id="view_payload" class="hide">
View in settings
</button>
</h3>
<h3>Injected</h3>
<div id="container_for_injected">
<span id="none_injected">None</span>
</div>
</div>
<h3>Trying to connect..<input id="loading_chbx" type="checkbox" class="show_next"></input><span>.</span></h3>
</div>
<button id="settings_but" type="button" style="margin-top: 20px;">Settings</button>_POPUPSCRIPTS_
</body>
</html>
|