ChatGPT Bookmark

ChatGPT Bookmark

ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Bookmark",
  "description": "ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT",
  "version": "1.0.5",
  "action": {
    "default_title": "ChatGPT Bookmark",
    "default_popup": "index.html",
    "default_icon": "./assets/logo.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.openai.com/*",
        "https://chat.openai.com/*",
        "http://localhost:8080/"
      ],
      "css": [
        "tailwind.css"
      ],
      "js": [
        "inject_test.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}