ListGPT - Save & Share ChatGPT chats

ListGPT - Save & Share ChatGPT chats

Save & Share ChatGPT chats in private, protected or public mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ListGPT - Save & Share ChatGPT chats",
  "description": "Save & Share ChatGPT chats in private, protected or public mode",
  "version": "1.1.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat",
        "https://chat.openai.com/chat/*"
      ],
      "js": [
        "./lib/jquery.min.js",
        "index.js",
        "./lib/marked.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "icons/icon.png",
    "default_popup": "index.html"
  },
  "host_permissions": [
    "https://chat.openai.com/chat"
  ],
  "permissions": []
}