Jobs Scraper for LinkedIn™

Jobs Scraper for LinkedIn™

Automate your LinkedIn™ job search by intelligently scraping and exporting relevant postings directly into a CSV file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.9",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "identity",
    "webRequest"
  ],
  "host_permissions": [
    "*://linkedinjobsscraper.extensionsbox.com/*",
    "*://*.linkedin.com/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiNJWD8415gmI1TV00VHTUi/9MMi6cgz5nHwbvIHp8O68tiBIoDhZtCyO0eTfe1amD5z+jWvmj13Mn7LAgkULBHK6R84egpaRdGK++sllCLDEMTfr4DOYIrU2xHtEvPawekVfn+GT0VpvilNx1hCGT4d53LwyDPdVe51PmZJJRwLOaR1G2qnnIeaoWvxAg3vfmGCyNZFIu5DDuIc/9gikbV1ipatDKvikft/WlF6/9Qnj0wmg4LYZkWCkdYN2BXeGbfD3IH9502DUuVEYqf2V3QQQwJem1Wxe7ONbNFH7wxsiTGJ88Up5iigioEn1Fk+ovlV6b1ou4OX7f6GhUDhbiwIDAQAB",
  "oauth2": {
    "client_id": "700879747061-nipb5j51hqi6sfn2hj73tajmdvh38o2q.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "libs/*",
        "injected.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}