// ==UserScript== // @name 扇贝单词笔记编辑框加高 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 扇贝单词笔记编辑框太小了, 滚来滚去好麻烦, 稍微大点. // @author wowo878787 // @match https://www.shanbay.com/review/learning/* // @grant none // @downloadURL none // ==/UserScript== (function() { $("").text("textarea.note-textarea{height:350px;}").appendTo($("head")); })();