Pikabu убрать эмоции

Скрывает элементы с классом "comment__emotions" и кнопки с классом "story__emotions emotions" на пикабу

// ==UserScript==
// @name         Pikabu убрать эмоции
// @name:en      Pikabu no emoji
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  Скрывает элементы с классом "comment__emotions" и кнопки с классом "story__emotions emotions" на пикабу
// @description:en  Hides elements with the "comment__emotions" class and buttons with the "story__emotions emotions" class on Pikabu
// @author       Xelavek
// @match        https://pikabu.ru/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';


    function hideEmotions() {

        var commentEmotions = document.querySelectorAll('.comment__emotions');
        commentEmotions.forEach(function(element) {
            element.style.display = 'none';
        });


        var storyEmotions = document.querySelectorAll('.story__emotions.emotions');
        storyEmotions.forEach(function(element) {
            element.style.display = 'none';
        });

              var storyEmotions = document.querySelectorAll('.story__emotions');
        storyEmotions.forEach(function(element) {
            element.style.display = 'none';
        });
    }

    hideEmotions();

    var observer = new MutationObserver(function(mutations) {
        mutations.forEach(function(mutation) {
            if (mutation.addedNodes.length) {
                hideEmotions();
            }
        });
    });


    var config = {
        childList: true,
        subtree: true
    };


    observer.observe(document.body, config);
})();