Profile parser for LinkedIn

Profile parser for LinkedIn

Allows recruiters to scrape info from linkedin profiles and export them as a .csv

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Profile parser for LinkedIn",
  "short_name": "Profile parser",
  "version": "1.3",
  "description": "Allows recruiters to scrape info from linkedin profiles and export them as a .csv",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "*://linkedin.com/*",
    "*://www.linkedin.com/*",
    "webRequest",
    "webRequestBlocking",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://linkedin.com/*",
        "*://www.linkedin.com/*"
      ],
      "js": [
        "scripts/parsers/company.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2
}