-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
55 lines (49 loc) · 2.15 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
54
55
<!doctype html>
<html>
<head><title>Webcensor options</title></head>
<link rel="stylesheet" type="text/css" href="style.css">
<body>
<div class="options">
<a href="http://webcensorapp.com/?utm_source=Chrome&utm_medium=Extension&utm_campaign=Logo" target="_blank">
<p style="text-align:center;margin:0 0 10px 0"><img src="http://webcensorapp.com/images/light-logo.png" style="width:200px;" alt="WebCensorApp" title="WebCensorApp" /></p>
</a>
<h3>Activate:</h3>
<div class="active">
<input type="checkbox" name="isactive" checked id="isactive"> <label for="isactive">Activated</label>
</div>
<h3>Show filtered words as:</h3>
<ul class="replacer">
<li><input type="radio" name="replacer" value="1" id="val1" checked="checked"> <label for="val1">*****</span></li>
<li><input type="radio" name="replacer" value="2" id="val2"> <label for="val2">@#$%&!</span></li>
<li><input type="radio" name="replacer" value="3" id="val3"> <label for="val3">[censored]</span></li>
<li><input type="radio" name="replacer" value="4" id="val4"> <label for="val4">custom: <input type="text" name="custom"></span></li>
</ul>
<h3>Choose your language:</h3>
<select id="languages">
<option value="eng">English</option>
<option value="de">German</option>
<option value="es">Spanish</option>
<option value="fi">Finnish</option>
<option value="fr">French</option>
<option value="it">Italian</option>
<option value="nl">Dutch</option>
<option value="no">Norwegian</option>
<option value="pl">Polish</option>
<option value="pt">Portuguese</option>
<option value="ro">Romanian</option>
<option value="sw">Swedish</option>
</select>
<h3>Add stop-words</h3>
<textarea class="wordsarea" id="stop-wordsarea"></textarea>
<span style="color:#FD3232;font-size:12px;">*each word (or phrase) from new line</span>
<br><br>
<h3>Add safe-words</h3>
<textarea class="wordsarea" id="safe-wordsarea"></textarea>
<span style="color:#FD3232;font-size:12px;">*each word (or phrase) from new line</span>
<br><br>
<button id="save">Save & exit</button>
</div>
<script src="storage.js"></script>
<script src="scripts.js"></script>
</body>
</html>