-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoptions.html
32 lines (31 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="utils/options.css"/>
<meta name="viewport" content="width=device-width">
</head>
<body>
<form>
<h1 data-i18n-id="general_headline">General settings</h1>
<div class="checkbox">
<input type="checkbox" id="autodisable_checkbox"/>
<label for="autodisable_checkbox" data-i18n-id="autodisable_label">Automatically disable referrer on browser startup</label>
</div>
<h1 data-i18n-id="spoofing_headline">Referrer spoofing</h1>
<div class="checkbox">
<input type="checkbox" id="spoofing_checkbox"/>
<label for="spoofing_checkbox" data-i18n-id="spoofing_label">Optional referrer spoofing feature</label>
</div>
<p id="spoofing_info">
<span id="spoofing_info_before">The optional referrer spoofing feature sends a spoofed referrer to </span>
<a id="spoofing_info_link" href="https://github.com/M-Reimer/togglereferrer/blob/master/spoofing.js#L19">some problematic servers</a>
<span id="spoofing_info_after"> in case you disabled referrer sending (no red flag next to toolbar button).</span>
</p>
<p data-i18n-id="permissions_info">If you opt in to this feature, then additional permissions are requested by Firefox to allow us to modify the referrer header.
</p>
</form>
<script src="utils/html-i18n.js"></script>
<script src="options.js"></script>
</body>
</html>