Indeed Job Scraper

Indeed Job Scraper

Scrape Indeed jobs, salaries, locations, and apply links and save to CSV or Excel. Easy to use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_showTitle__",
  "description": "__MSG_showSummary__",
  "version": "1.3.1",
  "manifest_version": 3,
  "default_locale": "en",
  "homepage_url": "https://indeedjobscraper.com",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/48.png"
  },
  "background": {
    "service_worker": "background/b.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.indeed.com/*"
      ],
      "js": [
        "cs/cs.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "img/*",
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}