ChatGPT Backup and Save (PDF & Text)

ChatGPT Backup and Save (PDF & Text)

With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.",
  "version": "0.0.3",
  "name": "ChatGPT Backup and Save (PDF & Text)",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "app.html",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "all_frames": true,
      "js": [
        "jquery-3.5.1.min.js",
        "jspdf.min.js",
        "sweetalert2.all.min.js",
        "FileSaver.min.js",
        "html2canvas.min.js",
        "contentScript.bundle.js"
      ],
      "run_at": "document_end",
      "css": [
        "content.styles.css",
        "sweetalert2.min.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery-3.5.1.min.js",
        "jspdf.min.js",
        "sweetalert2.all.min.js",
        "sweetalert2.min.css",
        "FileSaver.min.js",
        "html2canvas.min.js",
        "content.styles.css",
        "icon-128.png",
        "icon-32.png"
      ],
      "matches": [
        "*://chat.openai.com/*"
      ]
    }
  ],
  "permissions": []
}