ChatAI Plus - Batch Export GPT Conversations

ChatAI Plus - Batch Export GPT Conversations

ChatAI with a touch of color! Made easy adding extra features including download and share.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.1",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "css": [
        "styles/global.css"
      ],
      "js": [
        "scripts/content/ui.js",
        "scripts/content/utils.js",
        "scripts/content/language.js",
        "scripts/content/share.js",
        "scripts/content/download.js",
        "scripts/content/settings.js",
        "scripts/content/themes.js",
        "scripts/content/actions.js",
        "scripts/content/welcome.js",
        "scripts/content/reviews.js",
        "scripts/3rd-party/globalWordsCount.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "components/*",
        "images/*",
        "styles/*",
        "scripts/content/injected.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "64": "images/icons/64.png",
    "96": "images/icons/96.png",
    "128": "images/icons/128.png",
    "256": "images/icons/256.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icons/16.png",
      "32": "images/icons/32.png",
      "64": "images/icons/64.png",
      "96": "images/icons/96.png",
      "128": "images/icons/128.png",
      "256": "images/icons/256.png"
    },
    "default-title": "ChatGPT Plus - Batch Export GPT Conversations"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}