-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
93 lines (80 loc) · 3.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Content Rules</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<button class="collapsible">Example Content Rules</button>
<div class="content">
<div class="collapsible-content">
<p>
You can read about how to create rules on the <a
href="https://github.com/FirstTimeEZ/BlockTwitchContent/wiki">rule creation guide wiki page.</a>
Below are some example settings to get you started that hide some bots and spam
This will remove all chat content that mentions the words below, including replys
</p>
<pre>display-name=StreamElements
display-name=Streamlabs
display-name=SoundAlerts
display-name=Moobot
display-name=Nightbot
display-name=Fossabot
!join
!gamble
!following
!followage
!watchtime
!links</pre>
<p>
Removed messages can be found on the removed message history page
The more specific you make a rule the less likely it will match on something by accident
</p>
<pre>display-name=ExampleUser // Block comments from just this user.
user-id=712351331 // Block based on User Id
user-type=mod // Block based on User Type
:this is an example of a message in the chat // Block based on Comment
ExampleUser // Blocks the word ExampleUser, including replys, users, comments, etc.</pre>
</div>
</div>
<div id="container">
<div class="checkbox-wrapper">
<input type="checkbox" id="debugEnabled">
<label for="debugEnabled" class="label-size">Debug Enabled</label>
</div>
<p>
Enable extra output that could be useful if there are errors and you want to <a
href="https://github.com/FirstTimeEZ/BlockTwitchContent/issues">report a bug.</a>
This can also be useful for creating more advanced rules than are possible with the removed message history
</p>
</div>
<div id="container">
<div class="label-size">Note</div>
<p>
A page refresh is required after you change the settings below
</p>
</div>
<div id="container">
<div class="checkbox-wrapper">
<input type="checkbox" id="chatExtras">
<label for="chatExtras" class="label-size">Disable Chat Extras</label>
</div>
<p>
When enabled only comments and replys will appear in chat
Disables extra messages that appear when a user subscribes, raids, highlights their comment etc.
</p>
</div>
<div id="container">
<div class="checkbox-wrapper">
<input type="checkbox" id="encryptedMedia">
<label for="encryptedMedia" class="label-size">No Encrypted Media</label>
</div>
<p>
Do not allow the supervisor to use encrypted media
</p>
</div>
<script src="js/moduleOptions.js" type="module"></script>
</body>
</html>