Auto Save ChatGPT

Auto Save ChatGPT

Automatic saving, downloading and searching of ChatGPT conversation logs. Other features include voice input, templates, and etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Save ChatGPT",
  "version": "1.4",
  "description": "Automatic saving, downloading and searching of ChatGPT conversation logs. Other features include voice input, templates, and etc",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "jquery-ui.min.js",
        "FileSaver.min.js",
        "jszip.min.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}