Trim the DOM
Keep the browser rendering layer light while the underlying conversation remains intact.
Keep the browser rendering layer light while the underlying conversation remains intact.
Reduce typing lag, scroll jank, and UI slowdown once long threads cross the 100+ message line.
No servers, no analytics, no telemetry — only local browser state and client-side cleanup.
Long ChatGPT threads are brutal for the browser. The UI keeps every message in the DOM and the tab slowly turns into molasses.
Scroll becomes choppy, typing lags, and even powerful machines start to feel the weight after 100+ messages.
LightSession fixes UI lag by trimming old DOM nodes on the client side while keeping the actual conversation intact on OpenAI's side.
Your full conversation remains preserved. Refresh the page and the full thread is still there.
Keep only the latest messages visible and stop the page from ballooning uncontrollably.
Node removals stay within a tight frame budget so scrolling keeps feeling responsive.
Waits for streaming to finish before cleanup so the active response stays stable.
Optional on-page status pill shows what the extension trimmed and when it last cleaned up.
No. LightSession only trims what the browser renders. It does not remove conversation data from OpenAI's side and does not change the model's memory of the thread.