ChatGPT for Gmail

ChatGPT for Gmail

Leverage the power of ChatGPT within your Gmail inbox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.4",
  "name": "ChatGPT for Gmail",
  "short_name": "ChatGPT4Gmail",
  "description": "Leverage the power of ChatGPT within your Gmail inbox.",
  "icons": {
    "16": "images/Logo/logo16.png",
    "32": "images/Logo/logo32.png",
    "64": "images/Logo/logo64.png",
    "128": "images/Logo/logo128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/Logo/logo64.png",
    "default_title": "ChatGPT for Gmail"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://mail.google.com/",
    "https://core.salesgear.io/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ]
}