Screpto - Web Scraping Made Simple

Screpto - Web Scraping Made Simple

Best in class web scraping tool. Simply point and select, preview, and instantly turn any website into a spreadsheet or API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screpto - Web Scraping Made Simple",
  "version": "1.6.0",
  "short_name": "Screpto",
  "manifest_version": 2,
  "description": "Best in class web scraping tool. Simply point and select, preview, and instantly turn any website into a spreadsheet or API.",
  "homepage_url": "https://chrome.google.com/webstore/detail/screpto/gkdihiafcimldmdfofclddfoeohjljkd",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "devtools_page": "devtools.html",
  "background": {
    "scripts": [
      "./background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "cookies",
    "*://*.screpto.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.screpto.com:*/*"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self' https://*.clearbit.com; style-src * 'unsafe-inline';",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "./styles/injected.css"
      ]
    }
  ]
}