ExportGPT: Export ChatGPT Conversation

ExportGPT: Export ChatGPT Conversation

All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats",
  "version": "1.30",
  "manifest_version": 3,
  "name": "ExportGPT: Export ChatGPT Conversation",
  "author": "openHacking",
  "homepage_url": "http://chatopenai.pro/",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "identity",
    "webNavigation",
    "webRequest",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "48.png"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "128.png",
        "48.png",
        "16.png"
      ],
      "matches": []
    }
  ]
}