-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
48 lines (47 loc) · 1.32 KB
/
options.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Opener Detector settings</title>
<style>
body {
font-family: sans-serif;
}
#ignoreListTextArea {
display: block;
width: 100%;
min-height: 7em;
resize: vertical;
}
.about-link {
color: gray;
display: block;
font-size: small;
padding: 1em 0;
text-align: center;
}
</style>
</head>
<body>
<h2>Ignore list</h2>
<p>
Pages with URLs which start with any of the following will not be checked for vulnerabilities (include protocol):
</p>
<textarea id="ignoreListTextArea" disabled placeholder="e.g. https://www.example.com/">
Loading ignore list...
</textarea>
<p>
<input id="reportSameOriginCheckbox" disabled type="checkbox">
<label for="reportSameOriginCheckbox">
Report vulnerabilities between pages of the same origin (e.g. for a link between example.com/foo.html and
example.com/bar.html).
</label>
</p>
<button id="saveButton" disabled>Save</button>
<div id="saveConfirmMessage" style="display: none" aria-live="polite"></div>
<a class="about-link" href="about.html" target="_blank" rel="noopener noreferrer">About Opener Detector</a>
<script src="lib/browser-polyfill.min.js"></script>
<script src="config.js"></script>
<script src="options.js"></script>
</body>
</html>