Add prints styles for OpenAI ChatGPT page. Basically allows to print all the chat rather than just what's visible in 1 page.
OpenAI ChatGPT Print! by 42pe
Details
Author42pe
LicenseNo License
Categorychat.openai.com
Created
Updated
Size856 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
https://gist.github.com/42pe/022a840f82fe18e0b1b95817f21d81c5
Source code
/* ==UserStyle==
@name 2/26/2023, 12:48:28 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("chat.openai.com") {
@media print {
div, main {
height: auto !important;
display: block;
overflow: auto;
position: initial !important;
}
button {
display:none;
}
main > div:last-child {
display: none;
}
body > div#__next div.overflow-hidden, body > div#__next main {
overflow: auto;
}
body > div#__next > div:first-of-type > div.flex {
padding-left: 0;
}
body > div#__next > div:not(.flex) > div:last-child {
display: none;
}
}
}