-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
46 lines (43 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="utils/options.css"/>
<link rel="stylesheet" href="options.css"/>
<meta name="viewport" content="width=device-width"/>
</head>
<body>
<form>
<h1 data-i18n-id="general_headline">General settings</h1>
<p data-i18n-id="general_description">
Enable the first checkbox as soon as you configured your whitelist below. The second checkbox is optional but should be enabled for proper tracking protection.
</p>
<div class="checkbox">
<input type="checkbox" id="clearcookies_checkbox"/>
<label for="clearcookies_checkbox" data-i18n-id="clearcookies_label">Delete cookies, except from whitelisted domains, when Firefox is closed</label>
</div>
<div class="checkbox">
<input type="checkbox" id="clearstorage_checkbox"/>
<label for="clearstorage_checkbox" data-i18n-id="clearstorage_label">Delete localStorage and indexedDB for all domains, when Firefox is closed</label>
</div>
<h1 data-i18n-id="whitelist_headline">Domain whitelist</h1>
<p data-i18n-id="whitelist_description">
Add domains to your whitelist by enabling the checkbox to its left.
</p>
<table cellspacing="0">
<thead>
<tr>
<th></th>
<th data-i18n-id="domain_column">Domain</th>
<th data-i18n-id="cookies_column">Cookies</th>
</tr>
</thead>
<tbody id="domains_body">
</tbody>
</table>
</form>
<script src="utils/html-i18n.js"></script>
<script src="utils/storage.js"></script>
<script src="options.js"></script>
</body>
</html>