Examine source code of G Maps Scraper & Leads Data Extractor

Inspect and view changes in G Maps Scraper & Leads Data Extractor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "2.2.3",
  "description": "__MSG_extensionDescription__",
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "identity",
    "webRequest",
    "webRequestBlocking"
  ],
  "oauth2": {
    "client_id": "124861996162-i547te8u15euvdf624pt550jlj6sqsre.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://google.com/maps/*",
        "*://www.google.com/maps/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "icon-128.png",
        "src/pages/bulk/*"
      ],
      "matches": [
        "*://*.google.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}