Addon to block emotes?

Hello, is there an addon that can prevent you from seeing certain emotes done by other players? Even if it were to just hide the text? Thanks.

You could just toggle Emotes altogether in the chat settings

If you wanted to filter certain emotes here is a rather basic example

local function filter(self, event, msg)
	if strfind(msg, "wave") then
		return true
	end
end

ChatFrame_AddMessageEventFilter("CHAT_MSG_TEXT_EMOTE", filter)

You can turn it into an addon with https://addon.bool.no/ or https://www.curseforge.com/wow/addons/rehack