EmoGPT: ChatGPT Email Writer

EmoGPT: ChatGPT Email Writer

Designed for Gmail and powered directly by your OpenAI (ChatGPT) account, ensuring that your data is kept private and secure 🔒

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "EmoGPT: Empathetic AI Email Writer for Gmail",
  "description": "Elevate your emails with AI-powered writing. Designed for Gmail, powered by ChatGPT.",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "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": "{2274e13f-9b7c-4820-980f-e4534b03a5f9}"
    }
  }
}