Greasy Fork is available in English.

BotBirdの枠拡張

小さすぎて打てなぁぁぁい!!!!

// ==UserScript==
// @name         BotBirdの枠拡張
// @namespace    twitter.com/to_ku_me
// @version      0.1.1
// @description  小さすぎて打てなぁぁぁい!!!!
// @author       to_ku_me
// @match        https://botbird.net/admin/bot_random.php*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=botbird.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let i = document.querySelector("#message_new");
    i.style.height = "400px";
    for (let k of document.querySelectorAll("div:nth-child(2) > div:nth-child(1) > div.bb_textarea > textarea")){
        k.style.height = "400px";
    }
})();