Skip to content

screenshot-friendly-chatgpt by ditsuke

Details

Authorditsuke

LicenseNo License

Categorychat.openai.com

Created

Updated

Size853 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Make ChatGPT screenshot friendly by hiding noisy UI elements. Opinionated.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         screenshot-friendly-chatgpt
@version      20231120.10.08
@namespace    userstyles.world/user/ditsuke
@description  Make ChatGPT screenshot friendly by hiding noisy UI elements. Opinionated.
@author       ditsuke
@license      No License
==/UserStyle== */

@-moz-document url-prefix("https://chat.openai.com/") {
 /* profile pictures */
 .flex-shrink-0.flex.flex-col.relative.items-end,
 /* copy/rate buttons */
 div.flex > div.text-gray-400.flex.self-end,
 /* regenerate button */
 button.btn.btn-neutral {
     display: none;
 }

 /* Party name (chat or you) */
 .font-semibold.select-none {
     visibility: hidden;
 }

 /* scroll to buttom buttom */
 button.cursor-pointer {
     visibility: hidden;
 }

/* make user messages grey-er. only works with dark mode btw, afaik */
.dark\:bg-gray-800 {
    color: #a2a2a2;
}
}

Reviews

No reviews yet.