Greasy Fork is available in English.

Claude.ai Full Screen Chat

Modifies the styles of claude.ai to display the chat in full screen.

// ==UserScript==
// @name         Claude.ai Full Screen Chat
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Modifies the styles of claude.ai to display the chat in full screen.
// @match        https://claude.ai/*
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
        .max-w-3xl {
            max-width: none !important;
        }
    `);
})();