ChatGPT Bookmark

ChatGPT Bookmark

Effortlessly manage bookmarks while using ChatGPT! Save important conversations, questions, or ideas with ease.

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",
  "version": "1.4",
  "description": "Effortlessly manage bookmarks while using ChatGPT! Save important conversations, questions, or ideas with ease.",
  "permissions": [
    "storage",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "accordion.js",
        "insert_bookmark.js",
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ]
}