Discord is chrome-powered. Hit control/cmd + shift + i to open up the chrome debugger tools. Hit Application tab. At the side, find the Storage column, open up Local Storage, and click on the discord url. These are all the stuff that Discord saves (including your password token - do not share pls thx). There is a key named EmojiUsageHistory if you clear the stuff to the right and reload discord with ctrl/cmd+r, it will be cleared. Otherwise, if you know how to manipulate JSON data types, you can litterally remove :frogface: from the history.
Fonte: link
P.S. Não testei isso sozinho como estou no trabalho agora, mas vou tentar uma vez que estou em casa e atualizar a resposta
Para o JSON, será algo parecido com isto:
{"100":{"totalUses":1,"recentUses":[1514823987052],"frecency":50,"score":50},"eggplant":{"totalUses":1,"recentUses":[1514823987052],"frecency":50,"score":50},"fork_and_knife":{"totalUses":1,"recentUses":[1514823987052],"frecency":50,"score":50},"yum":{"totalUses":1,"recentUses":[1514823987052],"frecency":50,"score":50},}
Então, para remover "berinjela", por exemplo, você deve excluir o texto começando de "berinjela" até a chave e a vírgula que vem depois de "partitura".
{"100": {"totalUses": 1, "recentUses": [1514823987052], "frecency": 50, "score": 50}, "berinjela": {"totalUses": 1, "recentUses": [1514823987052], "frecency": 50, "score": 50}, "fork_and_knife": {"totalUses": 1, "recentUses": [1514823987052], "frecency": 50, "pontuação": 50}, "yum": {"totalUses": 1, "recentUses": [1514823987052], "frecency": 50, "score": 50}}