Handscraper - The Handshake Email Scraper

Handscraper - The Handshake Email Scraper

"Handscraper" is an Email scraper for the job board Handshake. This Chrome extension is designed to automate the extraction of…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Handscraper - The Handshake Email Scraper",
  "version": "1.1",
  "permissions": [
    "tabs",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "*://*.joinhandshake.com/stu/employers/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "small-icon.jpg"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.joinhandshake.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}