F You Twitch

Revert chat input box to be two lines height always. No resize.

La data de 18-07-2019. Vezi ultima versiune.

// ==UserScript==
// @name         F You Twitch
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Revert chat input box to be two lines height always.  No resize.
// @author       CommonKitten
// @match        *://*.twitch.tv/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByTagName("head")[0].innerHTML += "<style type=\"text/css\">textarea.tw-block.tw-border-radius-medium.tw-font-size-6.tw-full-width.tw-textarea.tw-textarea--no-resize {height: 55px !important;}</style>";
    setTimeout(RaiseBitAndEmoteButtons, 3500)
})();

function RaiseBitAndEmoteButtons() {
    var els = document.getElementsByClassName("tw-button-icon--secondary");
    els[1].setAttribute("style", "margin-bottom: 15px; position: relative;");
    els[2].setAttribute("style", "margin-bottom: 15px; position: relative;");
}