ivanatora / Remove extra large emoticons

// ==UserScript==
// @name        Remove extra large emoticons
// @version     1.0.0
// @author      ivanatora
// @description Got tired from those extra large Skype emoticons, taking half the screen?
// @require     http://code.jquery.com/jquery-3.2.1.min.js
// @include     https://web.skype.com/*
// @run-at      document-start
// ==/UserScript==

(function() {
    'use strict';

    var timer;

    function poll() {
        $('.extraLarge').each(function(){
            $(this).removeClass('extraLarge');
        })

    }

    timer = setInterval(poll, 1000);

})();