1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Added: Option to disable rendering of emotes in chat.
* Fixed: Thumbnails not being hidden on the home page of Twitch in some recommendation categories.
This commit is contained in:
SirStendec 2021-04-27 16:23:19 -04:00
parent 2f41f520af
commit b685ed3ce7
11 changed files with 86 additions and 28 deletions

View file

@ -86,6 +86,23 @@ export default class Emotes extends Module {
this._set_refs = {};
this._set_timers = {};
this.settings.add('chat.emotes.enabled', {
default: 2,
ui: {
path: 'Chat > Appearance >> Emotes',
title: 'Display Emotes',
sort: -100,
force_seen: true,
description: 'If you do not wish to see emotes, you can disable them here.',
component: 'setting-select-box',
data: [
{value: 0, title: 'Disabled'},
{value: 1, title: 'Twitch Only'},
{value: 2, title: 'Enabled'}
]
}
});
this.settings.add('chat.emotes.2x', {
default: false,
ui: {