ChatGPT Helper. Quick Access & Download

ChatGPT Helper. Quick Access & Download

Boost your productivity with AI-powered ChatGPT chatbot & easily download chat history. Get quick access with ChatGPT Helper!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.2",
  "background": {
    "service_worker": "/js/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "/js/app.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "/icons/icon_16.png",
    "128": "/icons/icon_128.png"
  },
  "action": {
    "default_icon": {
      "128": "/icons/icon_128.png"
    },
    "default_title": "__MSG_name__"
  }
}