扇贝单词笔记编辑框加高

扇贝单词笔记编辑框太小了, 滚来滚去好麻烦, 稍微大点.

目前為 2019-12-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         扇贝单词笔记编辑框加高
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  扇贝单词笔记编辑框太小了, 滚来滚去好麻烦, 稍微大点.
// @author       wowo878787
// @match        https://www.shanbay.com/review/learning/*
// @grant        none
// ==/UserScript==

(function() {
    $("<style></style>").text("textarea.note-textarea{height:350px;}").appendTo($("head"));
})();