forked from ImMattDavison/NoMoreDomains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
44 lines (42 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Options | No More Domains</title>
<link rel="stylesheet" href="assets/styles/options.css">
<link rel="icon" type="image/x-icon" href="assets/icon.png">
</head>
<body>
<div class="container">
<h1 class="title">NoMoreDomains</h1>
<div class="options-grid">
<div class="whitelist-container">
<div>
<h2>Whitelist Domains</h2>
<p>Whitelisted domains are not redirected by NoMoreDomains. Don’t worry, you can remove them later.</p>
</div>
<div id="optionsPageDiv" class="external-container">
<div class="whitelist-form">
<input type="text" id="whiteListDomain" placeholder="Add domain to whitelist">
<button id="WhiteList_Submit_Button">Whitelist</button>
</div>
<div class="divider"></div>
<h2 class="whitelisted-title">Whitelisted Domains</h2>
<table id="whiteList_domains_table">
<col style="width:80%">
<col style="width:20%">
<!-- <tr>
<th class="whitelisted-title">Whitelisted Domains</th>
</tr> -->
<!-- Display all whitelisted domains here -->
<tbody id="whiteList_domains">
</tbody>
</table>
<button id="WhiteList_Erase_Button">Remove all domains</button>
</div>
</div>
</div>
</div>
<script src="./options.js"></script>
</body>
</html>