Yellow Pages Scraper | Yellow Tools

Yellow Pages Scraper | Yellow Tools

Your free yellow pages data scraper.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Extensions Hub",
  "name": "Yellow Pages Scraper | Yellow Tools",
  "description": "Your free yellow pages data scraper.",
  "version": "1.0.4",
  "manifest_version": 3,
  "icons": {
    "16": "assets/yt-16.png",
    "48": "assets/yt-48.png",
    "128": "assets/yt-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/yt-16.png",
      "48": "assets/yt-48.png",
      "128": "assets/yt-128.png"
    }
  },
  "background": {
    "service_worker": "scripts/app/background_worker.min.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.yellowpages.com/*",
        "*://www.yellowpages.ca/*"
      ],
      "css": [
        "stylesheets/content/content.min.css",
        "stylesheets/lib/sweetalert2.min.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://www.yellowpages.com/*"
      ],
      "js": [
        "scripts/lib/FileSaver.min.js",
        "scripts/lib/xlsx.full.min.js",
        "scripts/lib/sentry.min.js",
        "scripts/lib/sweetalert2.all.min.js",
        "scripts/content/yellowpages_usa.min.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://www.yellowpages.ca/*"
      ],
      "js": [
        "scripts/lib/FileSaver.min.js",
        "scripts/lib/xlsx.full.min.js",
        "scripts/lib/sentry.min.js",
        "scripts/content/yellowpages_ca.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://www.yellowpages.com/*"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs6T3NbcbV/Cph3NOUvz906bcyhO4tRY50pSl5NugBayHrqmCQOYAMloQBQP8+dfd46mIIzUBWpKORndlMJtoV00l2kINrCV4p9sdHU8Tj06V8pfqe+ne+jZilPoWejBLwmIiNRBGR0jZQu5E0b+i39yR2ZRMzVNukjyuV/X1OdXNPyKRU33VGP9KRw/MpQddY7lMkk33WDLeWlEy1aIx5EQVbsQV0sZkewfT+Gw2umcpwNzSTVDave5RSXaSCKH69aZU8+bvtnYJOeNWH92qaDDRiJaHjtD2cTUbuxRVQbmFk5xbXFgNzFLa1Tx0zYMLEe9bC9YhSdcUJAlnmp7C1wIDAQAB",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/yt-16.png",
        "assets/yt-48.png",
        "assets/yt-128.png"
      ],
      "matches": [
        "*://www.yellowpages.com/*"
      ]
    }
  ]
}