Email Whisperer - GPT AI Email Writer

Email Whisperer - GPT AI Email Writer

Email Whisperer - Write emails with ai

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email Whisperer - GPT AI Email Writer",
  "version": "1.5",
  "description": "Email Whisperer - Write emails with ai",
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "http://localhost/",
    "https://*/",
    "*://*.google.com/"
  ],
  "action": {
    "default_title": "Email whisperer",
    "default_popup": "index.html"
  },
  "icons": {
    "128": "assets/images/whisperer-logo-bg-copy.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/*"
      ],
      "js": [
        "start.js"
      ],
      "css": [
        "./assets/css/whispererInject.css",
        "./assets/css/whispererIcons.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "assets/images/*"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/*"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; script-src-elem * 'self' 'unsafe-inline'; object-src 'self';"
  }
}