Rapid Scrapper

Rapid Scrapper

Automate and extract contents from any website easily

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Rapid Scrapper",
  "short_name": "Rapid Scrapper",
  "version": "1.0",
  "author": "Primex Software",
  "description": "Automate and extract contents from any website easily",
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*",
        "<all_urls>"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "./assets/Rapid-scrapper.png",
    "32": "./assets/Rapid-scrapper.png",
    "48": "./assets/Rapid-scrapper.png",
    "128": "./assets/Rapid-scrapper.png"
  }
}