Easy Web Data Scraper

Easy Web Data Scraper

Free & No-code scraper tool can automatically flip pages to extract or export any data you need

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.4",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "webRequest",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*.findniche.com/*",
    "*://kodepay.io/*",
    "*://*.kodepay.io/*"
  ],
  "action": {
    "default_icon": "icon/128yun.png"
  },
  "icons": {
    "128": "icon/128yun.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "js/jquery.js"
      ],
      "css": [
        "css/main.css"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "js/kodepayContent.js"
      ],
      "matches": [
        "https://kodepay.io/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "icon/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self'; child-src 'self'"
  }
}