Last active
May 21, 2023 13:41
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==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; } */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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