Claude Chat Style Adjustment Maximized

调整 Claude AI 对话界面的样式到最大化。Adjust the style of Claude AI dialogue interface to maximize.

// ==UserScript==
// @name         Claude Chat Style Adjustment Maximized
// @namespace    http://tampermonkey.net/
// @version      1.1.3
// @description  调整 Claude AI 对话界面的样式到最大化。Adjust the style of Claude AI dialogue interface to maximize.
// @author       Gao + GPT-4 + Claude
// @license      Custom License
// @match        https://*.claudesvip.top/*
// @match        https://*.claude.ai/*
// @match        https://*.fuclaude.com/*
// @match        https://*.aikeji.vip/*
// @grant        GM_addStyle
// ==/UserScript==

/*
 您可以在个人设备上使用和修改该代码。
 不得将该代码或其修改版本重新分发、再发布或用于其他公众渠道。
 保留所有权利,未经授权不得用于商业用途。
*/

/*
You may use and modify this code on your personal devices.
You may not redistribute, republish, or use this code or its modified versions in other public channels.
All rights reserved. Unauthorized commercial use is prohibited.
*/

(function() {
    'use strict';

    // 将界面的样式调整到最大化
    GM_addStyle(`
      .xl\:max-w-\[48rem\] {
        width: 100% !important;
        max-width: 100% !important;
      }
      div.mx-auto.md\:max-w-3xl {
        max-width: 100% !important;
      }
      div.mx-auto.flex {
        max-width: 100% !important;
      }
      body > div.flex.min-h-screen.w-full div.flex.flex-col div.flex.gap-2 div.mt-1.max-h-96.w-full.overflow-y-auto.break-words > div.ProseMirror.break-words {
        max-width: 100% !important;
      }
      body > div.flex.min-h-screen.w-full > div > main > div.top-5.z-10.mx-auto.w-full.max-w-2xl.md {
        max-width: 100% !important;
      }
      body > div.flex.min-h-screen.w-full > div > main > div.mx-auto.w-full.max-w-2xl.px-1.md {
        max-width: 100% !important;
      }
      body > div.flex.min-h-screen.w-full > div > main.max-w-7xl {
        max-width: 100% !important;
      }
      main > div.composer-parent article > div.text-base > div.mx-auto {
        max-width: 100% !important;
      }
      main article > div.text-base > div.mx-auto {
        max-width: 100% !important;
      }
      div.relative.flex.w-full.overflow-x-hidden.overflow-y-scroll > div.relative.mx-auto.flex.h-full.w-full > div.flex.mx-auto.w-full > div[data-test-render-count] > div.mb-1.mt-1 > div.group.relative.inline-flex {
        border: 1px solid #dfded7;
      }
    `);
})();