Humaily

Humaily

Analyze your email before hitting the send button.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Humaily",
  "version": "0.0.12",
  "description": "Analyze your email before hitting the send button.",
  "manifest_version": 2,
  "icons": {
    "16": "public/icon16.png",
    "48": "public/icon48.png",
    "128": "public/icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "page_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/mail/*",
        "https://outlook.office365.com/mail/*",
        "https://outlook.office.com/mail/*",
        "https://www.linkedin.com/*",
        "https://app.apollo.io/*",
        "https://app.salesrocket.io/*",
        "https://us3-app.outplayhq.com/*",
        "https://app.mixmax.com/*",
        "https://app.close.com/*",
        "https://app.saleshandy.com/*",
        "https://app.klenty.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "web_accessible_resources": [
    "public/*",
    "gtm.js"
  ]
}