Revert chat input box to be two lines height always. No resize.
目前為
// ==UserScript==
// @name F You Twitch
// @namespace http://tampermonkey.net/
// @version 0.5
// @description Revert chat input box to be two lines height always. No resize.
// @author CommonKitten
// @match *://*.twitch.tv/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(ApplyFix, 2500);
})();
function ApplyFix() {
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;} button.tw-button-icon.tw-button-icon--secondary.tw-interactive {margin-bottom: 15px !important; position: relative !important;}</style>";
}