A tiny Chrome extension that lets you star individual messages inside a Claude.ai conversation and jump back to them from a floating side panel — like a personal table of contents for your chats.
![]()
Long Claude conversations are great until you need to find that one important reply from 50 messages ago. Browser search works for keywords you remember, but not for “the part where Claude actually nailed it.”
Star the messages that matter, click them in the side panel, jump back.
chrome.storage.sync)chrome://extensions → enable Developer mode (top right)star-for-claude folderComing soon.
Open the side panel’s ⚙ settings to choose:
chrome.storage.localchrome.storage.sync (~100KB / 8KB per conversation)Switching modes copies your stars from the current backend into the other one (non-destructive).
Stars are stored only as: conversation ID, message index, ~120-char text snippet, role, timestamp. Nothing is sent to any external server. Full policy: PRIVACY.md.
A content script injected into https://claude.ai/*:
[data-testid="user-message"] / [data-testid="assistant-message"][role="group"][aria-label="Message actions"] toolbar and appends a star button (so it inherits Claude’s hover/visibility)document.bodyIf Claude.ai changes its DOM and the star stops appearing, the candidate selectors are at the top of content.js.
MIT