Block RainbowPls and GatoPls Emotes

Removes the RainbowPls and GatoPls emotes from DGG chat

// ==UserScript==
// @name         Block RainbowPls and GatoPls Emotes
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Removes the RainbowPls and GatoPls emotes from DGG chat
// @author       chatter
// @match        https://www.destiny.gg/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
        .RainbowPls,
        .GatoPls {
            display: none !important;
        }
    `);
})();