Upwork Scraper

Upwork Scraper

Scrape freelancers information from upwork search results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Upwork Scraper",
  "description": "Scrape freelancers information from upwork search results",
  "version": "1.1",
  "author": "Adhithyan Vijayakumar",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.upwork.com/o/profiles/browse/*"
      ],
      "js": [
        "scripts/scraper.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "idle",
    "storage",
    "tabCapture",
    "tabs",
    "downloads",
    "https://www.upwork.com/*"
  ]
}