稳定信号未识别中风险权限组合
ChatGPT Lag Fixer – Auto-hide old messages in long chats icon

ChatGPT Lag Fixer – Auto-hide old messages in long chats

Hides all but the last 50 messages in chatGPT

用户数3K当前公开安装规模
评分3.9商店平均评分
评论数35公开评论体量
Manifest 版本V3插件平台版本
7日增长0近 7 天净增用户
7日增长率0%相对周增长速度
视觉预览

ChatGPT Lag Fixer – Auto-hide old messages in long chats 媒体预览

3 项素材
趋势

用户增长趋势

按已采集快照查看用户数变化。

用户增长趋势

3K3K3K3K3K2026年7月15日2026年7月19日2026年7月19日最新值: 3K
评分趋势

近 7 日评分趋势

展示最近 7 日窗口内已采集的评分快照,辅助判断近期评分是否稳定。

7 日评分变化

起始值
3.89
最新值
3.89
7 日评分变化
0.00
3.793.843.893.943.992026年7月15日2026年7月19日2026年7月19日最新值: 3.89
2026年7月15日2026年7月19日
增长概览

日/周/月增长表现

同口径展示 1 天、7 天、30 天的绝对增长与增长率。

1日增长暂无数据
----
7日增长持平
00%
30日增长暂无数据
----
技术摘要

版本、语言与抓取信息

查看发布时间、版本、支持语言、最近更新和抓取时间。

版本1.1
ManifestV3
大小174KiB
语言数1English
发布时间
最近更新
最近抓取
English
简介

插件简介

查看插件说明、主要功能和适用场景。

A lightweight extension that speeds up long ChatGPT chats by hiding older messages.

Shows only the last 50 by default, with a "Show more" button to reveal history in chunks.

ChatGPT conversations with hundreds of messages can become painfully slow, especially during response generation. ChatGPT Lag Fixer fixes this by keeping the page light and responsive.

If you find it helpful, support the project:

GitHub: https://github.com/garanovich/Trimwise

Ko-Fi: https://ko-fi.com/rentanek0

评价

最新评论快照

查看最近评论和评分分布。

商店综合星级3.9Chrome 商店给出的聚合评分,包含只有打分但没有同步评论正文的情况
已同步评论均分3.7仅基于下方已同步评论正文计算
有内容评论23已同步的评论正文数量
总评分/评论数35Chrome 商店公开评分/评论计数

商店综合星级:3.9。下方星级分布只统计已同步评论正文;如果某个插件只有公开分数、没有真实评论正文,这里可能为空。

5
14
4
0
3
3
2
1
1
5
Thomas Edvalson2026年6月28日
1

Doesn't seem to do anything.

版本 1.1语言 en
J. Collins2026年5月2日
1

My CPU — the extension does nothing! It's also a little suspicious that this extension has two different names: "Trimwise" (in the options) and "ChatGPT Lag Fixer" (in this listing and the icon).

版本 1.1语言 en
Ruben2026年4月10日
1

Does nothing.

版本 1.1语言 en
2 有用 · 0 无用
Tyler Joseph DesRocher2026年2月20日
5

Thank you.

版本 1.1语言 en
Abdulrazaq Mukhtar2026年1月24日
5

Works as intended !

版本 1.1语言 en
Alex “Ajay” Basche2026年1月7日
2

Barely has any impact at all, ChatGPT still freezes and lags a ton. Use the extension 'ChatGPT LightSession' as that ACTUALLY fixes these issues.

版本 1.1语言 en
1 有用 · 0 无用
Bogdan2025年12月22日
5

Works as intended on Edge

版本 1.1语言 en
Stephen Carboni2025年12月19日
5

Works!

版本 1.1语言 en
Filip Vukotic2025年12月6日
5

Great one! It would be nice to have ability for custom message history because even 10 messages can be so long that browser hangs. Thanks!

版本 1.1语言 en
Guy Stevens2025年11月29日
5

this extension works great on chrome. for firefox i used a greasmonkey script that refernced your extension // ==UserScript== // @name Chat Trim Old Messages // @namespace http://tampermonkey.net/ // @version 0.2 // @description Keep only the last 15 messages in the ChatGPT DOM // @includes https://chatgpt.com/c/* // @grant none // ==/UserScript== (function(){ 'use strict'; const MAX_MESSAGES = 5; function trimMessages() { const allArticles = Array.from(document.querySelectorAll('article[data-testid^="conversation-turn-"]')); const excess = allArticles.length - MAX_MESSAGES; if (excess > 0) { for (let i = 0; i < excess; i++) { allArticles[i].style.display = 'none'; } } } // Observe the DOM for new messages const observer = new MutationObserver(trimMessages); observer.observe(document.body, { childList: true, subtree: true }); // Initial trim trimMessages(); })();

版本 1.1语言 en