ChatGPT Largescreen Chat

Apply Large Chat Style in ChatGPT

目前为 2025-04-16 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name ChatGPT Largescreen Chat
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Apply Large Chat Style in ChatGPT
  6. // @author SH3LL
  7. // @match https://chatgpt.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. const style = `
  15. .largescreen {
  16. .flex.text-base {
  17. max-width: unset;
  18. }
  19. }
  20. @media (min-width: 1024px) {
  21. .largescreen .flex.text-base .lg\\:w-\\[calc\\(100\\%-115px\\)\\] {
  22. width: calc(100% - 72px);
  23. }
  24. .largescreen form.w-full {
  25. max-width: 85%;
  26. margin: auto;
  27. }
  28. }
  29. .largescreen img {
  30. width: 653px;
  31. }
  32. `;
  33.  
  34. GM_addStyle(style);
  35.  
  36. document.body.classList.add('largescreen');
  37. })();