Yelp Scraper

Yelp Scraper

One click to extract Local Business Data from Yelp.com and export leads to 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.5.1",
  "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": [
        "*://*.yelp.at/search*",
        "*://*.yelp.be/search*",
        "*://*.yelp.ca/search*",
        "*://*.yelp.ch/search*",
        "*://*.yelp.cl/search*",
        "*://*.yelp.co.jp/search*",
        "*://*.yelp.co.nz/search*",
        "*://*.yelp.co.uk/search*",
        "*://*.yelp.com.ar/search*",
        "*://*.yelp.com.au/search*",
        "*://*.yelp.com.br/search*",
        "*://*.yelp.com.hk/search*",
        "*://*.yelp.com.mx/search*",
        "*://*.yelp.com.ph/search*",
        "*://*.yelp.com.sg/search*",
        "*://*.yelp.com.tr/search*",
        "*://*.yelp.com.tw/search*",
        "*://*.yelp.com/search*",
        "*://*.yelp.cz/search*",
        "*://*.yelp.de/search*",
        "*://*.yelp.dk/search*",
        "*://*.yelp.es/search*",
        "*://*.yelp.fi/search*",
        "*://*.yelp.fr/search*",
        "*://*.yelp.ie/search*",
        "*://*.yelp.it/search*",
        "*://*.yelp.my/search*",
        "*://*.yelp.nl/search*",
        "*://*.yelp.no/search*",
        "*://*.yelp.pl/search*",
        "*://*.yelp.pt/search*"
      ],
      "js": [
        "lib/axios.min.js",
        "contentScript.js"
      ],
      "css": [
        "css/contentScript.css"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "icons/icon48.png",
    "default_title": "Yelp Scraper",
    "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'"
  }
}