Web Scraper - Free Web Scraping

Web Scraper - Free Web Scraping

Web data extraction tool with an easy point-and-click interface for modern web

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.75.7",
  "name": "Web Scraper - Free Web Scraping",
  "short_name": "Web Scraper",
  "description": "Web data extraction tool with an easy point-and-click interface for modern web",
  "permissions": [
    "tabs",
    "notifications",
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest"
  ],
  "optional_permissions": [
    "webRequest"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "Web Scraper",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "devtools_page": "devtools_init_page.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "background_script.js"
  },
  "externally_connectable": {
    "matches": [
      "https://cloud.webscraper.io/*"
    ]
  },
  "minimum_chrome_version": "100",
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon16.png",
        "images/icon24.png",
        "images/icon32.png",
        "images/icon48.png",
        "images/icon128.png"
      ],
      "matches": [
        "https://cloud.webscraper.io/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}