Skip to content

ChatGPT - 過去ログ自動非表示 by Crate

Details

AuthorCrate

LicenseMIT

Categorychatgpt

Created

Updated

Size567 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

ChatGPTの過去ログを自動で非表示にし、軽量化するカスタムスタイルです。

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         https://chatgpt.com/
@version      20250210.07.09
@namespace    https://chatgpt.com/
@description  ChatGPTの過去ログを自動で非表示にし、軽量化するカスタムスタイルです。
@homepage     https://chatgpt.com/g/
@author       Crate
@license      MIT
==/UserStyle== */

@-moz-document url-prefix("https://chatgpt.com/") {
/* 最新10ターンだけ表示、それより古いものは非表示 */
article[data-testid^="conversation-turn"]:nth-last-child(n+11) {
    display: none !important;
}

}

Reviews

No reviews yet.