Email Finder - GetProspect

Email Finder - GetProspect

LinkedIn Email Finder – Look up emails for free. Find email address in seconds – free email finder. Search emails on website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "short_name": "Getprospect",
  "version": "5.4.3",
  "manifest_version": 3,
  "homepage_url": "https://app.getprospect.com",
  "action": {
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "assets/img//extension/icon16.png",
    "48": "assets/img//extension/icon48.png",
    "128": "assets/img//extension/icon128.png"
  },
  "background": {
    "service_worker": "./background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "./foreground.bundle.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*.getprospect.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/common.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.getprospect.com/*",
      "*://localhost/*"
    ]
  }
}