Export GPT - Export your chats with GPTs

Export GPT - Export your chats with GPTs

An extension to export your chats with pre-trained transformers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Export GPT - Export your chats with GPTs",
  "description": "An extension to export your chats with pre-trained transformers",
  "version": "1.0.2",
  "manifest_version": 3,
  "action": {},
  "icons": {
    "16": "/img/exportgpt-16.png",
    "32": "/img/exportgpt-32.png",
    "48": "/img/exportgpt-48.png",
    "128": "/img/exportgpt-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "style.css",
        "img/icon-main.png",
        "img/loader.png"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}