// ==UserScript== // @name 【聊天室CSS优化】 // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description 为聊天室客户端加入一些CSS优化。当前包括:输入框高度限制。 // @author firetree // @license WTFPL // @grant GM_addStyle // @run-at document-start // @match *://*/* // @downloadURL none // ==/UserScript== (function() { let css = `textarea { max-height: 400px; }`; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();