Email Insights

Email Insights

Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Email Insights",
  "icons": {
    "16": "image16.png",
    "48": "image48.png",
    "128": "image128.png"
  },
  "version": "1.0.3",
  "content_security_policy": "script-src 'self' https://emaili.herokuapp.com/receiver; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/u/*",
        "https://outlook.live.com/mail/0/*",
        "https://mail.yahoo.com/d/*"
      ],
      "js": [
        "content.js",
        "services.js",
        "google.js",
        "outlook.js",
        "yahoo.js",
        "jquery.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "EI.png",
    "default_popup": "popup.html",
    "default_title": "Customize Insights!"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}