Prospect

Find new leads online and sync them to your CRM
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {},
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Find new leads online and sync them to your CRM",
  "externally_connectable": {
    "matches": [
      "*://*.tryprospect.com/*",
      "*://localhost:*/*"
    ]
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/16x16.png",
    "19": "icons/19x19.png",
    "32": "icons/32x32.png",
    "38": "icons/38x38.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png",
    "256": "icons/256x256.png"
  },
  "manifest_version": 3,
  "name": "Prospect",
  "permissions": [
    "alarms",
    "contextMenus",
    "cookies",
    "scripting",
    "sidePanel",
    "storage",
    "tabs"
  ],
  "side_panel": {
    "default_path": "index.html"
  },
  "version": "2025.3.5",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.hot-update.json",
        "css/*.css",
        "fonts/*",
        "icons/*",
        "images/*"
      ]
    }
  ]
}