-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
68 lines (60 loc) · 2.42 KB
/
Copy pathoptions.html
File metadata and controls
68 lines (60 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TriggerRemover Options</title>
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body class="p-3">
<!--
<h1>TriggerRemover Options</h1>
<hr>
-->
<h2>Preset Lists</h2>
<div id="preset-lists"></div>
<hr>
<form id="import">
<h2>Import from File or URL</h2>
<div class="form-group">
<input type="file" id="trigger_list_file">
<div class="form-group">
<input type="text" class="form-control" name="trigger_list_url" id="trigger_list_url" placeholder="Public URL of Trigger Word File" />
</div>
<input type="checkbox" name="overwrite_trigger_list" id="overwrite_trigger_list" value="overwrite_trigger_list">
<label><b> Overwrite current list</b></label>
</div>
<button type="submit" class="btn btn-primary mt-3">
Import Trigger Word File
</button>
</form>
<hr>
<form id="export">
<h2>Export to file</h2>
<div class="form-group">
<label for="list_name">List name</label>
<input type="text" class="form-control" name="list_name" id="list_name" placeholder="my_trigger_list" required />
</div>
<div class="form-group">
<label for="list_author"> List Author <i>(e.g: Email, Twitter handle, Forum user URL) </i></label>
<input type="text" class="form-control" name="list_author" id="list_author" placeholder="" />
</div>
<input type="checkbox" name="obfuscate_trigger_list" id="obfuscate_trigger_list" value="obfuscate_trigger_list">
<label> Obfuscate (words will <b>not</b> be readable in the file)</label>
<br>
<button type="submit" class="btn btn-primary mt-3">
Export Trigger Word File
</button>
</form>
<a href="/list-editor.html" target="_blank">
<button type="submit" id="list-editor" class="btn btn-primary mt-3 center">
Trigger List Editor
</button>
</a>
<script src="assets/js/lib/browser-polyfill.min.js"></script>
<script src="assets/js/lib/jquery.min.js"></script>
<script src="assets/js/lib/utf-8-base64.js"></script>
<script src="assets/js/trigger-remover.js"></script>
<script src="assets/js/pages/options.js"></script>
</body>
</html>