Fixes lag by hiding old messages. Can be customized.
/* ==UserStyle==
@name skribbl.io lag fix
@namespace https://greasyfork.org/en/users/795073-thewordwas
@version 0.0.1
@description Fixes lag by hiding old messages. Can be customized.
@author TheWordWas
@preprocessor uso
@var text count "Message display count" 200
==/UserStyle== */
@-moz-document domain("skribbl.io") {
.chat-content:not(.nolagfix) > p {
display: none;
}
.chat-content > p:nth-last-child(-n+/*[[count]]*/) {
display: block;
}
}