Ellie - Your AI Email Assistant

Ellie - Your AI Email Assistant

Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Ellie: Your Professional AI Email Assistant",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "version": "2.3.4",
  "description": "Ellie uses the context of the email thread to reply to emails in your style. Works natively in Gmail. Powered by OpenAI & ChatGPT.",
  "permissions": [
    "scripting",
    "storage",
    "activeTab"
  ],
  "options_ui": {
    "browser_style": true,
    "page": "src/options/index.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.fastmail.com/mail/*",
        "https://mail.google.com/mail/*"
      ],
      "js": [
        "src/clients/common/index.js"
      ],
      "css": [
        "src/clients/common/common.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "src/clients/gmail/libs/jquery-3.6.1.min.js",
        "src/clients/gmail/libs/gmail.js",
        "src/clients/gmail/libs/postal.js"
      ],
      "css": [
        "src/clients/gmail/styles.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "js": [
        "src/clients/gmail/index.js"
      ],
      "css": [
        "src/clients/gmail/styles.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://app.fastmail.com/mail/*"
      ],
      "js": [
        "src/clients/fastmail/index.js"
      ],
      "css": [
        "src/clients/fastmail/styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon32.png",
    "default_title": "Ellie",
    "default_popup": "src/popup/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}