YouTube auto emoji disabler

Disables the conversion from ASCII emojis like XD :) to real emojis in the YouTube live chat.

// ==UserScript==
// @name         YouTube auto emoji disabler
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Disables the conversion from ASCII emojis like XD :) to real emojis in the YouTube live chat.
// @icon         https://www.youtube.com/s/desktop/a902b1c6/img/favicon.ico
// @author       d0gkiller87
// @match        https://www.youtube.com/live_chat*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var livechat = document.querySelector('#input-panel > yt-live-chat-message-input-renderer');
    livechat.$.input.completeEmojis = ()=>{};
})();