Created
December 8, 2023 11:37
-
-
Save unitycoder/22dbc1d411cf6fce1a2de72dac028e03 to your computer and use it in GitHub Desktop.
Revisions
-
unitycoder created this gist
Dec 8, 2023 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ // ==UserScript== // @name chatGPT bigger text area for last reply (08.12.2023) // @namespace https://unitycoder.com // @include https://chat.openai.com/c/* // @grant none // @run-at document-start // ==/UserScript== // https://stackoverflow.com/a/19392142/5452781 function AppendStyle(cssStr) { var D = document; var newNode = D.createElement ('style'); newNode.textContent = cssStr; var targ = D.getElementsByTagName ('head')[0] || D.body || D.documentElement; targ.appendChild (newNode); } AppendStyle(".final-completion {max-width: none !important;");