A small browser extension that adds power-user tools to the Claude web UI:
- Copy any Claude response as Plain, Markdown, or Rich (HTML).
- Branch from here — open a transcript of every turn up to and including a chosen Claude response, copy or download it, and paste it into a new chat to continue from that point.
The extension is content-script-only. No background pages, no remote services, no bundler.
- Download
delta-chrome.zipfrom the latest release. - Unzip it somewhere permanent (the extension loads from this folder — don't delete it).
- Visit
chrome://extensions. - Toggle Developer mode (top right).
- Click Load unpacked and pick the unzipped folder.
- Open
https://claude.ai/chat/...and reload the tab.
To update: download the new release, unzip over the existing folder, and click the refresh icon on the extension card.
Coming soon. Firefox requires Mozilla-signed .xpi files for stable distribution; once signed, the install path becomes a one-click .xpi download.
In the meantime, see Develop below for the temporary-add-on flow.
The extension only runs on https://claude.ai/chat/*. It makes no outbound fetch calls to any host other than claude.ai (locked in by a test in tests/conversationClient.test.js).
npm install
npm test # vitest run
npm run build # rebuilds dist/chrome/ and dist/firefox/
npm run package:chrome # builds + zips dist/chrome/ into dist/delta-chrome.zip
There is no watcher — re-run npm run build after editing src/.
src/ Runtime modules (ES modules, loaded via loader.js)
vendor/ Vendored Turndown + GFM tables (no npm install needed at runtime)
tests/ Vitest suites + captured API fixtures
scripts/ build.js — copies src + vendor + the right manifest into dist/<target>/
dist/chrome/ Loadable unpacked extension for Chrome
dist/firefox/ Loadable temporary add-on for Firefox / Zen
For Chrome, follow the install steps above but pick dist/chrome/ after npm run build instead of an unzipped release.
For Firefox / Zen (temporary add-on, unloaded on browser quit):
npm run build- Visit
about:debugging→ This Firefox → Load Temporary Add-on… - Pick any file inside
dist/firefox/(Firefox loads the whole containing folder). - Open
https://claude.ai/chat/...and reload the tab.
After editing source: rebuild, return to about:debugging, and click Reload on the extension's card.