您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Revert chat input box to be two lines height always. No resize.
// ==UserScript== // @name Revert Twitch Chatbox to Old Size // @namespace http://tampermonkey.net/ // @version 1.11 // @description Revert chat input box to be two lines height always. No resize. // @author CommonKitten // @match *://www.twitch.tv/* // @grant none // ==/UserScript== (function() { 'use strict'; //Credit to twitch user VGAcab for this change if (document.readyState === "interactive" || document.readyState === "complete") { setTimeout(ApplyFix, 200); } })(); 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>"; }