RareFind: Biz Info

The Rare-Find extension allows you to utilize all of Google Maps’ search data. While you search on Google Maps, our extension can…
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",
  "manifest_version": 3,
  "name": "RareFind: Biz Info",
  "version": "1.3",
  "action": {
    "default_title": "RareFind: Location Info",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "images/icon-128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "oauth2": {
    "client_id": "903941111746-0m6pncp0ufa4ta3ppf1djpi2asi134lu.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvcnWJSy88r6oUAltBpkP5NbVHgoo8WvOXWRwN008GlBe6r5FlWXXwgcTh0S6wJAjOxKbTg44/RhWIHd6DW+YK+LRHYWfL/LXKUyNMoMYRr/JoXSWd//+cPLfCmDctF9pRfKAslePALqudW8+OkAGc9Si/oSleUwRc9MSTAQ5ndv9FpSz7jxaRt+cCGLETUzYcDj9jD1vjVtDBV/20CABsyK4A9vDjiuyMqHi3lb48chAj+7egBnlSiFoJUlCqRtISPejnIu5QnSyh/galxT+TZdER0YTDqoNvlAvHzSYapxpDGqp2adwydI8/FS6fhBhJs/6xCOOUV152rJT39F/ewIDAQAB",
  "permissions": [
    "tabs",
    "identity",
    "identity.email",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/maps/*",
        "https://script.google.com/macros/s/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js",
        "export.js"
      ]
    }
  ],
  "icons": {
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_security_policy": {},
  "externally_connectable": {
    "matches": [
      "https://*.googleusercontent.com/*",
      "https://www.google.com/maps/*"
    ],
    "ids": [
      "*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}