PeopleSmart - Find B2B Emails & Phone Numbers

PeopleSmart - Find B2B Emails & Phone Numbers

Research professional contact details from LinkedIn profiles, including emails, direct dials, and social media profiles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "./background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "./contentScripts.js"
      ],
      "css": [
        "./assets/style.css"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Research professional contact details from LinkedIn profiles, including emails, direct dials, and social media profiles.",
  "icons": {
    "16": "assets/prospecting-iq.png",
    "32": "assets/prospecting-iq.png",
    "64": "assets/prospecting-iq.png",
    "128": "assets/prospecting-iq.png"
  },
  "manifest_version": 2,
  "name": "PeopleSmart - Find B2B Emails & Phone Numbers",
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "https://*.google.com/*",
    "https://*.gstatic.com/*",
    "https://www.google-analytics.com/*",
    "webNavigation",
    "*://*.peoplesmart.com/*"
  ],
  "web_accessible_resources": [
    "js/*",
    "assets/*",
    "css/*",
    "html/*",
    "https://*.peoplesmart.com/*"
  ],
  "version": "1.2.6",
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle feature foo"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    },
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "windows": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      }
    }
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}