Maps Scraper and Lead Generation - Free

Maps Scraper and Lead Generation - Free

One click to extract B2B Local leads from Maps and export leads to Excel/CSV files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.2.0",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bing.com/maps*",
        "*://*.bing.com/maps*",
        "*://bing.com/maps*"
      ],
      "js": [
        "lib/he.js",
        "contentScript.js"
      ],
      "css": [
        "css/contentScript.css"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "icons/icon48.png",
    "default_title": "Export Local Leads from Maps",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "help.html",
        "auth/pay/*",
        "dashboard.html",
        "injected.js",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*.productivityimprover.com/",
    "http://localhost/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}