Prospect Role: Find email leads

Prospect Role: Find email leads

Generate hundreds of leads with verified emails in seconds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "./src/assets/icon.png",
    "48": "./src/assets/icon.png"
  },
  "action": {
    "default_icon": {
      "16": "./src/assets/icon.png"
    },
    "default_popup": "./src/popup/public/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "./src/content/google.js"
      ],
      "matches": [
        "https://*.google.com/search*"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "js": [
        "./src/content/bing.js"
      ],
      "matches": [
        "https://*.bing.com/search*"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "src/background/index.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "identity"
  ],
  "description": "Generate hundreds of leads with verified emails in seconds",
  "manifest_version": 3,
  "name": "Prospect Role: Find email leads",
  "short_name": "Prospect Role",
  "version": "1.1",
  "web_accessible_resources": [],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline';"
  },
  "incognito": "not_allowed",
  "oauth2": {
    "client_id": "947099253460-l8vekctdf8oba62gep89dot9361i5bbr.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}