BookMarkMe

Bookmark for ChatGPT

A Chrome Extension (Manifest V3) that lets you save specific ChatGPT prompt/response pairs and jump back to them later.

What it does

Stored bookmark shape

The extension stores bookmarks under the bookmarks key in chrome.storage.local.

{
  "id": "uuid",
  "title": "Prompt preview",
  "textSnippet": "First 100 chars of the assistant response",
  "chatUrl": "https://chatgpt.com/c/...",
  "timestamp": 1712345678901,
  "anchorIndex": 12,
  "promptSnippet": "First 100 chars of the user prompt"
}

The first five fields satisfy the requested storage contract. anchorIndex and promptSnippet are included as extra fingerprint data to improve matching reliability.

Files

Notes