Janitor AI - Stable Chat Width Fix

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

// ==UserScript==
// @name         Janitor AI - Stable Chat Width Fix
// @namespace    
// @version      5.1
// @description  Sets the chat textarea width 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
// ==/UserScript==

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

    console.log("Janitor AI - Chat Width Fix has been applied.");
})();