ThiccGPT

Very simple. Just makes the ChatGPT chat interface wider so you can actually see stuff. Especially useful for code blocks.

  1. // ==UserScript==
  2. // @name ThiccGPT
  3. // @namespace com.anwinity.chatgpt
  4. // @version 1.0.2
  5. // @description Very simple. Just makes the ChatGPT chat interface wider so you can actually see stuff. Especially useful for code blocks.
  6. // @author Anwinity
  7. // @match *://chat.openai.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
  9. // @license MIT
  10. // @grant GM_setValue
  11. // @grant GM_getValue
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. function addStyle(id, css) {
  18. const style = document.createElement("style");
  19. style.type = "text/css";
  20. style.id = id;
  21. style.textContent = css;
  22. document.head.appendChild(style);
  23. }
  24.  
  25. const css = `
  26. div.group {
  27. max-width: 100rem !important;
  28. }
  29. `;
  30. addStyle("thiccgpt-style", css);
  31.  
  32. })();