Scrape All

Scrape All

Scrape all web data mapping extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scrape All",
  "description": "Scrape all web data mapping extension.",
  "version": "0.2",
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "https://localhost/*",
        "http://localhost/*",
        "https://*.google.com/*",
        "https://*.scrapeall.io/*",
        "https://twitter.com/*",
        "https://youtube.com/*",
        "https://ant.design/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.bundle.js"
      ]
    }
  ]
}