Mail Master

Mail Master

Let me help you start writing email in just minutes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mail Master",
  "description": "Let me help you start writing email in just minutes.",
  "version": "0.0.3",
  "icons": {
    "16": "./img/16.png",
    "32": "./img/32.png",
    "48": "./img/48.png",
    "128": "./img/128.png"
  },
  "action": {
    "default_icon": {
      "16": "./img/16.png",
      "32": "./img/32.png",
      "48": "./img/48.png",
      "128": "./img/128.png"
    },
    "default_title": "Mail Master",
    "default_popup": "./popup.html"
  },
  "homepage_url": "https://mailmaster.ai/#/writeAndRes",
  "background": {
    "service_worker": "./background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "./css/content.css"
      ],
      "js": [
        "./js/jquery-3.5.1.min.js",
        "./js/util.js",
        "./js/content.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://mailmaster.ai/*"
      ],
      "js": [
        "./js/mailMasterContent.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "https://api.mailmaster.ai/"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ]
}