Map Leads Extractor

Map Leads Extractor

Automatically extracts key data from Google Maps and outputs clean CSV files for seamless lead follow-up

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Automatically extracts key data from Google Maps and outputs clean CSV files for seamless lead follow-up",
  "version": "0.1.2",
  "manifest_version": 3,
  "name": "Map Leads Extractor",
  "icons": {
    "16": "logo16.png",
    "48": "logo16.png",
    "128": "logo16.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://map.google.com/*",
        "https://*.google.com/maps/*"
      ],
      "js": [
        "inject.js",
        "contentScript.bundle.js"
      ],
      "css": [
        "overlay.css"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "declarativeContent",
    "activeTab",
    "webRequest"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "xhrScript.js",
        "overlay.css",
        "overlay.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}