Stable signalUnknownMedium-risk permissions
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

Users3KCurrent public install base
Rating3.9Store average score
Reviews35Public review volume
Manifest versionV3Extension platform version
7-day growth0Net users gained this week
7-day growth rate0%Relative weekly velocity
Preview

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

3 assets
Trend

User growth trend

Review user movement across collected snapshots.

User Growth Over Time

3K3K3K3K3K2026年7月15日2026年7月19日2026年7月19日Latest: 3K
Rating trend

7-day rating trend

View collected rating snapshots from the latest 7-day window to assess rating stability.

7-day rating change

Start
3.89
Latest
3.89
7-day rating change
0.00
3.793.843.893.943.992026年7月15日2026年7月19日2026年7月19日Latest: 3.89
2026年7月15日2026年7月19日
Growth overview

Daily, weekly, and monthly growth

Compare 1-day, 7-day, and 30-day net growth and growth rate.

1-day growthNo data
----
7-day growthFlat
00%
30-day growthNo data
----
Technical snapshot

Version, languages, and crawl freshness

Review publication date, version, supported languages, and crawl timestamps.

Version1.1
ManifestV3
Size174KiB
Languages1English
Published
Store updated
Last crawled
English
Overview

Product summary

Review the store description, core capabilities, and common use cases.

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

Reviews

Recent review snapshot

Inspect the latest comments and rating distribution.

Store average score3.9Chrome Web Store aggregate rating, including ratings without synced review text
Synced text average3.7Average computed only from synced review bodies below
Reviews with text23Synced review bodies
Total ratings / reviews35Chrome Web Store public rating/review count

Store average score: 3.9. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.

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

Doesn't seem to do anything.

Version 1.1Language 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).

Version 1.1Language en
Ruben2026年4月10日
1

Does nothing.

Version 1.1Language en
2 helpful · 0 not helpful
Tyler Joseph DesRocher2026年2月20日
5

Thank you.

Version 1.1Language en
Abdulrazaq Mukhtar2026年1月24日
5

Works as intended !

Version 1.1Language 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.

Version 1.1Language en
1 helpful · 0 not helpful
Bogdan2025年12月22日
5

Works as intended on Edge

Version 1.1Language en
Stephen Carboni2025年12月19日
5

Works!

Version 1.1Language 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!

Version 1.1Language 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(); })();

Version 1.1Language en