Janitor AI - Set Textarea Width to 1000px

Sets the width of the chat textarea to 1000px (You can change it to fit your screen.)

当前为 2025-07-15 提交的版本,查看 最新版本

// ==UserScript==
// @name         Janitor AI - Set Textarea Width to 1000px
// @namespace
// @version      5.0
// @description  Sets the width of the chat textarea to 1000px (You can change it to fit your screen.)
// @author       ???
// @match        https://janitorai.com/chats/*
// @grant        GM_addStyle
// @run-at       document-start
// @license      Unlicense
// @namespace https://greasyfork.org/users/1495024
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle(`
        textarea[class*="_glassTextarea_"] {
            width: 1000px !important;
        }
    `);
})();