LeadVantage - Find, validate & collect emails

LeadVantage - Find, validate & collect emails

Find email addresses using keywords, find valid emails for leads, validate email lists and collect emails from websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LeadVantage - Find, validate & collect emails",
  "short_name": "LeadVantage",
  "version": "1.0.4",
  "offline_enabled": false,
  "background": {
    "persistent": true,
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "res/images/icons/icon16.png",
    "32": "res/images/icons/icon32.png",
    "48": "res/images/icons/icon48.png",
    "128": "res/images/icons/icon128.png"
  },
  "description": "Find email addresses using keywords, find valid emails for leads, validate email lists and collect emails from websites.",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "res/images/icons/icon16.png",
      "32": "res/images/icons/icon32.png",
      "48": "res/images/icons/icon48.png",
      "128": "res/images/icons/icon128.png"
    },
    "default_title": "LeadVantage"
  },
  "web_accessible_resources": [
    "res/*.png"
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "http://*/",
    "https://*/"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}