Speed Booster for ChatGPT – Fix Lag & Freezing in Long Chats
Stop browser freezing and lag in long ChatGPT conversations. Instantly speeds up the entire UI and reduces memory usage.
Hides all but the last 50 messages in chatGPT
Review user movement across collected snapshots.
View collected rating snapshots from the latest 7-day window to assess rating stability.
Compare 1-day, 7-day, and 30-day net growth and growth rate.
Review publication date, version, supported languages, and crawl timestamps.
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
Inspect the latest comments and rating distribution.
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.
Review related products from the Chrome Web Store detail page.
Stop browser freezing and lag in long ChatGPT conversations. Instantly speeds up the entire UI and reduces memory usage.
Lazy-load long ChatGPT conversations by showing only the most recent messages (configurable). Reduces lag on long chats.
You can delete and archive ChatGPT, Claude, and Gemini chats all at once.
Easily bulk select, delete, and archive ChatGPT conversations. Declutter your ChatGPT history in just a few clicks!
A Chrome extension to bulk delete ChatGPT conversations
Improve ChatGPT performance in long conversations, without losing your context!
Doesn't seem to do anything.
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).
Does nothing.
Thank you.
Works as intended !
Barely has any impact at all, ChatGPT still freezes and lags a ton. Use the extension 'ChatGPT LightSession' as that ACTUALLY fixes these issues.
Works as intended on Edge
Works!
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!
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(); })();