Skip to content

Instantly share code, notes, and snippets.

@KennethScott
Last active January 13, 2024 19:26
Show Gist options
  • Save KennethScott/69970f5e4ceca48d08f20b46254ca77a to your computer and use it in GitHub Desktop.
Save KennethScott/69970f5e4ceca48d08f20b46254ca77a to your computer and use it in GitHub Desktop.
ChatGPT Widescreen

Add as bookmark link:

javascript:(function()%7Bconst%20wideScreenStyle%20%3D%20document.createElement('style')%0A%0AwideScreenStyle.innerText%20%3D%0A'.text-base.mx-auto%20%7B%20max-width%3A%2097%25%20!important%3B%20%7D'%20%2F%2F%20widen%20inner%20container%0A%2B%20'main%20form%20%7B%20max-width%3A%2090%25%20!important%3B%20%7D'%3B%20%20%2F%2F%20wider%20chatbox%20%0A%0Adocument.head.appendChild(wideScreenStyle)%3B%7D)()%3B

ChatGPT Widescreen

const wideScreenStyle = document.createElement('style')
wideScreenStyle.innerText =
'.text-base.mx-auto { max-width: 97% !important; }' // widen inner container
+ 'main form { max-width: 90% !important; }'; // wider chatbox
document.head.appendChild(wideScreenStyle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment