ChatGPT for Gmail

ChatGPT for Gmail

Display ChatGPT response as a suggestion to complete emails

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "ChatGPT for Gmail",
  "description": "Display ChatGPT response as a suggestion to complete emails",
  "version": "1.0.6",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "https://mail.google.com/*",
    "https://*.openai.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "css": [
        "content-script.css"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{23952b89-c9b6-455c-8ab7-207aa0fd21a4}"
    }
  }
}