Greasy Fork editor adjuster

Automatically adjusts the height of editor.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Greasy Fork editor adjuster
// @namespace    https://greasyfork.org/ja/users/570127
// @version      2025.12.14.5
// @description  Automatically adjusts the height of editor.
// @description:ja ソースエディタのテキストエリアの高さを行数に応じて高くします。
// @author       universato
// @match        https://greasyfork.org/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    const textarea = document.querySelector('#script_version_code');
    if (!textarea) return;

    // Adjust the height of editor.
    const numberOfLines = textarea.value.split('\n').length;
    textarea.style.height = (18 * Math.min(44, Math.max(12, numberOfLines))) + "px";

    const submit = document.querySelector('input[type="submit"][name="commit"]');
    if (!submit) return;

    return;

    submit.addEventListener('click', function (event) {
        const hasTrailingSpace = /[ \t]+$/m.test(textarea.value);
        if (!hasTrailingSpace) return;

        const proceed = confirm(
            '[UserScript] Greasy Fork editor adjuster:\n\n' +
            'Trailing whitespace were found.\n\n' +
            'Do you want to continue and submit anyway?'
        );

        if (!proceed) {
            event.preventDefault();
            event.stopPropagation();
        }
        // proceed === true の場合は何もせず送信続行
    }, true); // capture
})();