Skip to content

Instantly share code, notes, and snippets.

@apkd
Last active May 21, 2023 13:41
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apkd/3c3372cffb0076a014a2ec0acdd23bbb to your computer and use it in GitHub Desktop.
Save apkd/3c3372cffb0076a014a2ec0acdd23bbb to your computer and use it in GitHub Desktop.
WideGPT: Simply makes your ChatGPT conversations wider. Convenient if you're using a computer monitor produced after 1999.
/* ==UserStyle==
@name WideGPT
@version 0.1
@namespace https://tryfinally.dev/
@description Simply makes your ChatGPT conversations wider. Convenient if you're using a computer monitor produced after 1999.
@author tryfinally.dev
==/UserStyle== */
@-moz-document domain("chat.openai.com") {
.xl\:max-w-3xl { max-width: 90% !important; }
/* uncomment to hide the "Enable chat history" button: */
/* .w-full.mt-4.btn-primary.relative.btn:has(svg) { display: none; } */
}
// ==UserScript==
// @name WideGPT
// @namespace https://tryfinally.dev/
// @version 0.1
// @description Simply makes your ChatGPT conversations wider. Convenient if you're using a computer monitor produced after 1999.
// @author tryfinally.dev
// @match https://chat.openai.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.xl\\:max-w-3xl { max-width: 90% !important; }';
document.head.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment