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
按已采集快照查看用户数变化。
展示最近 7 日窗口内已采集的评分快照,辅助判断近期评分是否稳定。
同口径展示 1 天、7 天、30 天的绝对增长与增长率。
查看发布时间、版本、支持语言、最近更新和抓取时间。
查看插件说明、主要功能和适用场景。
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.9。下方星级分布只统计已同步评论正文;如果某个插件只有公开分数、没有真实评论正文,这里可能为空。
查看 Chrome 商店详情页中的相关产品。
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(); })();