ChatGPT Copier
Chrome extension that adds a one-click copy button to every ChatGPT response.
A small Chrome extension that adds a one-click copy button to every ChatGPT response. There’s no configuration and no settings page. Install it, and the button just appears wherever ChatGPT’s responses do, from the next reply onward.
The triple-click-and-drag problem
Copying a ChatGPT answer without the extension means the triple-click-drag-Cmd-C ritual: click to select a paragraph, drag to extend the selection across line breaks and code blocks, and hope the formatting comes along cleanly instead of picking up stray whitespace or breaking mid-sentence. It’s a small friction, but a small friction repeated constantly: people who use ChatGPT heavily do that dance several hundred times a week. The math justifies a tool this narrow.
One-click copy, and nothing else
A copy button doesn’t need an options page, an account, or a dashboard. It needs to work every single time and get out of the way otherwise. The scope stays deliberately narrow: copy the response text, cleanly, and do nothing else. For a utility this small, every added feature is one more chance to break the one thing it’s supposed to do reliably, so the extension resists the urge to grow one.
How it tracks new responses
ChatGPT’s interface streams responses in and re-renders as the conversation grows, so a copy button can’t just be placed once at page load. It has to appear correctly on messages that don’t exist yet when the extension first runs. A content script watches the DOM for new response blocks as they’re added and attaches the button to each one as it appears, rather than relying on a fixed list of selectors that would break the moment ChatGPT’s UI shifts.
Install and permissions
Vanilla JavaScript, no external dependencies, no analytics, no framework: there’s nothing here that needs one. The extension asks for nothing beyond permissions on the chat domain itself: no broad host access, no background tracking, no data leaving the browser. Available on the Chrome Web Store and featured on Product Hunt.
Related projects
- PageNote is another deliberately narrow Chrome extension built around one repeated browser task.
- DataLayer Sidepanel uses Chrome’s side panel for real-time analytics debugging.