Web Scrape

Web Scrape

Scrape the web with a single click! Turn unstructured data in processed data, ready for you spreadsheet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web Scrape",
  "version": "0.0.0.4",
  "description": "Scrape the web with a single click! Turn unstructured data in processed data, ready for you spreadsheet!",
  "icons": {
    "16": "assets/scraper_16.png",
    "48": "assets/scraper_48.png",
    "128": "assets/scraper_128.png"
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "permissions": [],
  "content_scripts": [
    {
      "js": [
        "content/import-index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "loading.gif"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content/index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {}
}