Kick.com has an emoji reaction spam problem, so I decided it was better to hide all chat reactions.
Kick.com - Hide chat message reactions by revboxx
Details
Authorrevboxx
LicenseMIT
Categorykick.com
Created
Updated
Size490 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Kick.com - Hide message reactions
@namespace kick.com
@description Kick.com has an emoji reaction spam problem, so I decided it was better to hide them entirely.
@author revboxx
@version 1.0.0
@license MIT
==/UserStyle== */
@-moz-document domain("kick.com") {
div.message > div > div.text-sm > div.flex > div.mr-1,
div.message > div > div.text-sm > div.flex > div.relative,
div.group\/emoji {
display: none;
}
}