-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoptions.html
53 lines (53 loc) · 1.97 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
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<style>
body {
padding: 1em;
padding-top: 0;
}
summary {
margin: 1em 0;
}
</style>
</head>
<body>
<label>
Icon colour:
<select id="colour" class="save">
<option value="dark">Dark</option>
<option value="light">Light</option>
</select>
</label>
<br>
<label>
Incognito icon colour:
<select id="incognito-colour" class="save">
<option value="dark">Dark</option>
<option value="light">Light</option>
</select>
</label>
<div id="status"></div>
<hr>
<p>Having trouble? Email <a href="mailto:[email protected]">[email protected]</a>.</p>
<label>
Debug mode:
<input type="checkbox" id="debug-mode" class="save">
</label>
<div id="debug-logs">
<p>Debug mode is enabled. <strong>Leave this page open.</strong> Debug logs will be collected as you use the extension.</p>
<p id="debug-logs-uncollected">When you encounter a problem, come back to this tab.</p>
<div id="debug-logs-collected">
<p>Debugging information has now been collected. Press the button below to copy it to the clipboard. This information will help the developer to fix the problem.</p>
<button id="copy-debug-logs" type="button">Copy debugging information</button>
<p>Remember to turn debug mode off once you're done.</p>
<details>
<summary>What data do these logs include?</summary>
<p>No personal information is included; the developer cannot identify you from these logs.</p>
<p>Log entries are written when various events occur (such as the "mute tab" button being pressed, or another extension muting/unmuting a tab). Each log entry has a timestamp, and may include contextual information about the event (such as the ID of the extension which muted/unmuted the tab).</p>
</details>
</div>
</div>
<script type="module" src="options.js"></script>
</body>
</html>