EmailTree.AI

EmailTree.AI

Answer customers' questions in seconds using AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EmailTree.AI",
  "description": "Answer customers' questions in seconds using AI",
  "version": "1.6.32",
  "manifest_version": 3,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_title": "emailtree-plugin"
  },
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/popup.html",
        "popup/images/*",
        "popup/resources/style.json",
        "popup/resources/functions.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "cross_origin_embedder_policy": {
    "value": "require-corp"
  },
  "cross_origin_opener_policy": {
    "value": "same-origin"
  }
}