SaveGPT

SaveGPT

Save your ChatGPT conversations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SaveGPT",
  "description": "Save your ChatGPT conversations",
  "icons": {
    "16": "icons/history.png",
    "32": "icons/history.png",
    "48": "icons/history.png",
    "128": "icons/history.png"
  },
  "manifest_version": 3,
  "version": "1.0.30",
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "permissions": [
    "storage",
    "webRequest",
    "activeTab",
    "unlimitedStorage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "tooltip.js",
        "utils.js",
        "index.js"
      ],
      "css": [
        "index.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "utils.js",
        "twitter.js"
      ],
      "matches": [
        "https://*.twitter.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "download.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}