Supinfor Scraper

Supinfor Scraper

Auto web scraper powered by AI or template, and exports it as Excel or CSV files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Supinfor Scraper",
  "description": "Auto web scraper powered by AI or template, and exports it as Excel or CSV files",
  "version": "1.0.4",
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "16": "img/logo16.png",
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": "img/logo48.png",
    "default_title": "Auto web scraper powered by AI "
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "page": "html/options.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/onload.css"
      ],
      "js": [
        "utils/jquery-3.6.3.min.js",
        "utils/sha256.min.js",
        "utils/aes.js",
        "utils/mode-ecb.js",
        "utils/pad-nopadding.js",
        "utils/Readability.js",
        "js/onload.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*/*"
    ]
  },
  "permissions": [
    "cookies",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "html/options.html"
}