Yellow Pages Scraper

Yellow Pages Scraper

Extract leads from yellow pages in csv format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yellow Pages Scraper",
  "version": "1.0.3",
  "description": "Extract leads from yellow pages in csv format",
  "manifest_version": 3,
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/logo.png",
    "32": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.yellowpages.com/*",
        "http://*.yellowpages.com/*",
        "https://*.yellowpages.ca/*",
        "http://*.yellowpages.ca/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}