Sets the width of the chat textarea to 1000px (You can change it to fit your screen.)
当前为
// ==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;
}
`);
})();