-
Notifications
You must be signed in to change notification settings - Fork 0
Collapse file tree
Files
Search this repository(forward slash) forward slash/
/
Copy pathoptions.html
More file actions
More file actions
Latest commit
148 lines (125 loc) · 3.6 KB
/
Copy pathoptions.html
File metadata and controls
148 lines (125 loc) · 3.6 KB
You must be signed in to make or propose changes
More edit options
Edit and raw actions
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1"
>
<title>SERP Domain Index</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<main>
<h1>SERP Domain Index</h1>
<p class="introduction">
This extension builds an exact, disk-backed hostname-label
index. For example, a stored label of
<code>0-173</code> matches
<code>shop.0-173.net</code>, but not
<code>shop.example0-173.net</code>.
</p>
<section aria-labelledby="status-heading">
<h2 id="status-heading">Index status</h2>
<dl class="status-grid">
<dt>Status</dt>
<dd id="index-status">Loading...</dd>
<dt>Exact labels</dt>
<dd id="domain-count">-</dd>
<dt>Generation</dt>
<dd id="generation">-</dd>
<dt>Imported</dt>
<dd id="imported-at">-</dd>
<dt>Source files</dt>
<dd id="source-count">17</dd>
</dl>
</section>
<section aria-labelledby="filtering-heading">
<h2 id="filtering-heading">Filtering</h2>
<label class="checkbox-row">
<input id="enabled" type="checkbox">
<span>Enable search-result filtering</span>
</label>
<label class="checkbox-row">
<input
id="include-subdomains"
type="checkbox"
checked
disabled
>
<span>
Check each complete hostname label
</span>
</label>
<p class="explanation">
Matching is exact by label. A rule for
<code>a</code> matches <code>a.example.com</code>,
but does not match <code>data.example.com</code>.
The final hostname label, such as
<code>com</code>, is not checked.
</p>
</section>
<section aria-labelledby="import-heading">
<h2 id="import-heading">Import</h2>
<p>
Source files are downloaded sequentially. If Firefox,
Windows, or this tab closes, completed source files are
preserved. Resume the build later; only the interrupted
source restarts.
</p>
<div class="actions">
<button id="start-import" type="button">
Start new full import
</button>
<button
id="resume-import"
type="button"
class="secondary"
disabled
>
Resume import
</button>
<button
id="abandon-import"
type="button"
class="secondary"
disabled
>
Pause import
</button>
<button
id="clear-data"
type="button"
class="danger"
>
Delete active index
</button>
</div>
<progress
id="progress"
max="17"
value="0"
hidden
></progress>
<output
id="progress-text"
aria-live="polite"
></output>
</section>
<section aria-labelledby="sources-heading">
<h2 id="sources-heading">Sources</h2>
<p>
The full import uses <code>1.txt</code> through
<code>9.txt</code>, <code>a.txt</code> through
<code>g.txt</code>, and <code>cdn</code>. The
<code>cdn</code> source intentionally has no
<code>.txt</code> extension.
</p>
</section>
<noscript>
JavaScript must be enabled to manage this extension.
</noscript>
</main>
<script src="options.js"></script>
</body>
</html>