-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
60 lines (52 loc) · 1.98 KB
/
popup.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
56
57
58
59
<!doctype html>
<html>
<head>
<title>Getting Started Extension's Popup</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<link rel="stylesheet" type="text/css" href="settings.css"></link>
</head>
<body>
<div id="enable-deletion" class="header deletion" scrubber="deletion">
<input type=checkbox name="enable-deletion">
Delete messages based on pre-defined rules.
</input>
</div>
<div id="deletion-options" class="sub-header deletion" scrubber="deletion">
<input type=checkbox name="lengthRestrict">Length Restriction</input></br>
<input type=checkbox name="copyPasta">Copy Pasta</input></br>
<input type=checkbox name="triggerPhrase">Ban Phrase</input></br>
<input type=checkbox name="byAccountStatus">Account Type</input></br>
<input type=checkbox name="staffMessagePriority">Staff Priority</input></br>
<input type=checkbox name="notificationPriority">Notification Priority</input></br>
</div>
<div id="enable-mutate" class="header mutate" scrubber="mutate">
<input type=checkbox name="enable-mutate">
Clean up messages based on pre-defined rules.
</input>
</div>
<div id="mutate-options" class="sub-header mutate" scrubber="mutate">
<input type=checkbox name="minimizeCaps">Reduce all-caps messages</input></br>
<input type=checkbox name="directedMsg">Stylize Mentions (@username)</input></br>
<input type=checkbox name="reduceEmotes">Reduce Emoticons</input></br>
<input type=checkbox name="reduceLinks">Hide Links</input></br>
</div>
<FORM id="myform">
your comments:<BR>
<TEXTAREA NAME="comments" COLS=40 ROWS=6></TEXTAREA>
<P><INPUT TYPE=SUBMIT VALUE="submit">
</FORM>
</body>
<script src="jquery-2.1.3.js"></script>
<script src="settings.js"></script>
</html>