Greasy Fork is available in English.
A userscript for hiding messages from new chatters in DGG chat.
// ==UserScript==
// @name Hide New User Flair Messages
// @match https://www.destiny.gg/*
// @grant GM_addStyle
// @description A userscript for hiding messages from new chatters in DGG chat.
// @version 0.0.1.20251110165622
// @namespace http://greasyfork.icu/users/1494673
// ==/UserScript==
(function(){
GM_addStyle('.msg-chat.flair58 { display: none !important; }');
// catch any already-rendered messages before the style took effect
document.querySelectorAll('.msg-chat.flair58').forEach(e => e.style.display = 'none');
})();