-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoptions.html
36 lines (35 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en" class="dark-theme-everywhere-specificity-helper" id="dark-theme-everywhere-specificity-helper">
<head>
<meta charset="UTF-8">
<title>Dark Theme Everywhere Options</title>
<link rel="stylesheet" href="main.css" />
</head>
<body class="dark-theme-everywhere-specificity-helper">
<br />
<label for="theme">Theme defaults to:</label>
<select name="theme" id="theme" autofocus>
<option value="dark">Dark</option>
<option value="light">Light</option>
</select>
<br />
<br />
<label for="exceptions">Exceptions (default to the opposite of what's listed above):
<ul>
<li>Each entry should contain a substring of the URL you wish to mark. For example:
<ul>
<li><em>google</em> will match <strong>google.com</strong> and <strong>google.org</strong></li>
<li><em>google.com</em> will only match <strong>google.com</strong> and not <strong>google.org</strong></li>
</ul>
</li>
<li>Separate entries with commas or new lines</li>
</ul>
</label>
<textarea name="exceptions" id="exceptions" cols="60" rows="7"></textarea>
<br />
<br />
<label for="darken">Darken media (images, videos, embeds)</label>
<input type="checkbox" name="darken" id="darken" />
<script src="options.js"></script>
</body>
</html>