Last updated: 2026-05-22
This extension is designed with a single rule: your data never leaves your browser.
Star for Claude adds a star button to every message in a Claude.ai conversation. When you star a message, the extension stores a small record locally so it can show the star in a side panel and scroll you back to that message later.
For each starred message, the following is saved:
| Field | Example | Purpose |
|---|---|---|
| Conversation ID | e4f7a2b1-... |
Knowing which chat the star belongs to |
| Message index | 57 |
Locating the message position in the chat |
| Text snippet | first ~120 characters of the message | Showing a label in the panel and re-finding the message if its index shifts |
| Role | user or assistant |
Coloring/labeling the panel entry |
| Timestamp | 1716370847123 |
Ordering stars |
Nothing else from your conversation, your Claude account, or your browser is read or stored.
The extension uses Chrome’s built-in storage APIs. You choose one of two modes from the panel’s settings (⚙):
chrome.storage.local. Data lives in this browser profile only.chrome.storage.sync. Chrome synchronizes the data across browsers signed into the same Google account. Sync is operated by Google as part of Chrome itself; this extension only uses the standard API.In both modes, no server operated by the extension developer is involved.
The extension requests two things:
storage — required to save your stars.https://claude.ai/* — required to inject the star button and side panel into Claude.ai.It does not request any other permissions, including no broad host permissions, no tabs permission, no scripting permission.
Several built-in ways:
chrome://settings/cookies/detail?site=claude.ai for local storage, and Chrome sync controls for synced storage.Uninstalling the extension does not automatically wipe data already written to chrome.storage. To remove it, use the in-app delete buttons before uninstalling, or use Chrome’s per-extension data controls.
If this policy ever changes, the updated version will be published at the same URL with a new “Last updated” date. Material changes will also be noted in the extension’s release notes.
Open an issue at the extension’s source repository, linked from its Chrome Web Store page.