Email Finder

Email Finder

An Email Finder Extension which helps you get CEO Email quicker

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 Finder",
  "version": "1.11",
  "description": "An Email Finder Extension which helps you get CEO Email quicker",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.4.1.js",
        "js/script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js; object-src 'self' ",
  "web_accessible_resources": [
    "images/*.png"
  ]
}