Scrapeo

Scrapeo

The Scrapeo extension allows you to scrape content from websites from multiple pages and easily export it to your favorite format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.40.25",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "homepage_url": "https://www.scrapeo.net",
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "__MSG_browserActionTitle__",
    "default_icon": {
      "16": "img/Icon_16.png",
      "19": "img/Icon_19.png",
      "48": "img/Icon_48.png",
      "128": "img/Icon_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/availability-checker.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/inject/handsontable.full.min.css",
        "css/fonts.css",
        "css/content.css",
        "js/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/Icon_16.png",
    "19": "img/Icon_19.png",
    "48": "img/Icon_48.png",
    "128": "img/Icon_128.png"
  },
  "oauth2": {
    "client_id": "43002603544-fv90dbun6ocm7h7i5vh0dhphgkb5ioue.apps.googleusercontent.com",
    "scopes": [
      "email"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "fonts/*",
        "css/inject/*",
        "js/inject/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "downloads",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}