Compose - Write Emails with AI

Compose - Write Emails with AI

Automatically generate quality emails with the push of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Compose - Write Emails with AI",
  "description": "Automatically generate quality emails with the push of a button.",
  "version": "1.0.5",
  "icons": {
    "16": "img/16x16whitebg2.png",
    "48": "img/48x48whitebg2.png",
    "128": "img/128x128whitebg2.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "html/popup.html",
        "html/button.html",
        "html/additional_details.html"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content_scripts/content.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "Compose",
    "default_popup": "html/action.html"
  },
  "permissions": [
    "storage"
  ]
}