Export ChatGPT Conversation

Export ChatGPT Conversation

Export ChatGPT conversations and save to Notion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Export ChatGPT Conversation",
  "version": "1.4",
  "description": "Export ChatGPT conversations and save to Notion",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_popup": "html/main.html",
    "default_title": "Export ChatGPT conversations and save to Notion"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://jpwv43ppkip63xz6he4gy3zn6a0ysndz.lambda-url.eu-west-2.on.aws/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    },
    {
      "matches": [
        "https://gptsave.xyz/*"
      ],
      "js": [
        "scripts/content_images.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "thirdparty/mixpanel.js",
        "thirdparty/mixpanel-2-latest.min.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAh+RawI49wVNaP1CkWZUbQyWvZt0SJUH20W7cdtyIfFfHEcrrbIPyI5EaHzSTbM8GGebPDmPGieF3LUAunwJA+oxJuVWw4cyXZCMvr55m9VvwVfZ6yug60taBbxTbhfaRRJqlA2avv7SFwMD6rXVV88mmkfLkVyhXXJe9PCdTRjpuhvWJqByl1x+fZl38zzqdiJi7FnS50PpvBtuIygFHy8T8O43YJ5D9Hy0oxQHWwWnP1KFQ98KnaP82SefzAb8cKU9gdGtm+WyMulmvr3v60iuTwUjz+1K1kB/Ot+KKtH4c05FCYwbpcQKAzgdiiOzDWyw3UIu0U7tlHlsqKSovFQIDAQAB"
}