Spider Free - The simplest web scraper

Spider Free - The simplest web scraper

Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spider Free - The simplest web scraper",
  "short_name": "Spider",
  "version": "2.0",
  "author": "Amie Chen",
  "description": "Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.",
  "manifest_version": 3,
  "commands": {
    "toggle-spider": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q",
        "windows": "Alt+Q",
        "chromeos": "Alt+Q",
        "linux": "Alt+Q"
      },
      "description": "Toggle Spider"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "content/content.html",
        "content/content.css",
        "content-min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://fonts.googleapis.com/",
    "https://fonts.googleapis.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "32": "images/logo-32.png"
    }
  }
}