// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .max-w-3xl { max-width: none !important; } `); })();