Email Finder Expert

Email Finder Expert

Find contacts using Finder extension on any website or social network. Verify found contacts with our verifier

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email Finder Expert",
  "short_name": "Finder",
  "description": "Find contacts using Finder extension on any website or social network. Verify found contacts with our verifier",
  "version": "2.0.5",
  "manifest_version": 3,
  "homepage_url": "http://finder.expert",
  "default_locale": "en",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "js/serviceWorker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "libs/jquery-3.3.1.min.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "cookies",
    "tabs",
    "notifications",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}