mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-11 00:20:54 +00:00
4.14.2
* Added: Additional settings for controlling the behavior of Twitch's native Chat Filters. * Added: Upload strings directly from the Translation Tester UI. (This is for me only, but I like it.) * Changed: Allow resizing text entry boxes in the Translation Tester UI. * Fixed: Emoji categories were not being localized.
This commit is contained in:
parent
b53e0e6427
commit
3b7e99e5a3
10 changed files with 198 additions and 14 deletions
|
@ -232,6 +232,34 @@ export default class Chat extends Module {
|
|||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.automod.delete-messages', {
|
||||
default: true,
|
||||
ui: {
|
||||
path: 'Chat > Filtering >> AutoMod Filters @{"description": "Extra configuration for Twitch\'s native `Chat Filters`."}',
|
||||
title: 'Mark messages as deleted if they contain filtered phrases.',
|
||||
component: 'setting-check-box'
|
||||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.automod.remove-messages', {
|
||||
default: true,
|
||||
ui: {
|
||||
path: 'Chat > Filtering >> AutoMod Filters',
|
||||
title: 'Remove messages entirely if they contain filtered phrases.',
|
||||
component: 'setting-check-box'
|
||||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.automod.run-as-mod', {
|
||||
default: false,
|
||||
ui: {
|
||||
path: 'Chat > Filtering >> AutoMod Filters',
|
||||
title: 'Use Chat Filters as a moderator.',
|
||||
description: 'By default, Twitch\'s Chat Filters feature does not function for moderators. This overrides that behavior.',
|
||||
component: 'setting-check-box'
|
||||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.filtering.process-own', {
|
||||
default: false,
|
||||
ui: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue