forked from FrostCo/AdvancedProfanityFilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
53 lines (45 loc) · 1.72 KB
/
options.html
File metadata and controls
53 lines (45 loc) · 1.72 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Advanced Profanity Filter</title>
<link rel="stylesheet" type="text/css" href="options.css" />
</head>
<body>
<div id="profanityButton">
<button id="toggleProfanity">Modify Profanity List</button>
<div id="listWarning" class="notes">Warning: Offensive Language</div>
</div>
<div id="profanityList" style="display: none;">
<div class="notes">Comma separated values with no spaces</div>
<textarea id="wordList" cols="40" rows="10"></textarea>
<button id="save">Save List</button>
</div>
<div id="options">
<label>
<input type="checkbox" id="preserveFirst">
Preserve the first letter
</label>
<div class="examples">Example: If "Dog" is filtered, then it is displayed as "D**"</div>
<label>
<input type="checkbox" id="filterSubstring">
Filter parts of words
</label>
<div class="examples">Example: If "Dog" is filtered, then "Doghouse" is displayed as "***house"</div>
<label>
<input type="checkbox" id="showCounter">
Show number of filtered words
</label>
<div class="examples">Number of filtered words will be shown over the extension icon</div>
</div>
<div id="status"></div>
<button id="default">Restore Defaults</button>
<span id="contributors">
<a href="https://github.com/richardfrost/AdvancedProfanityFilter/releases" target="_blank">Changelog</a>
- <a href="https://github.com/richardfrost/AdvancedProfanityFilter/issues" target="_blank">Support</a>
<br>
Created by <a href="mailto:richard@richardfrost.info?Subject=Advanced%20Profanity%20Filter">Richard Frost</a><br>
Based off of markyd13's Simple Profanity Filter
</span>
<script src="options.js"></script>
</body>
</html>