Emailexp

Emailexp

Validate and show email details, like photo and role

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Emailexp",
  "description": "Validate and show email details, like photo and role",
  "version": "0.8",
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "64": "64.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "EmailExp",
    "default_icon": "64.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "manifest_version": 2
}