Linkedin Data Scrapper

Linkedin Data Scrapper

LinkedIn Data Scrapper is a data extraction tool,The extension helps recruiters to save linkedIn candidates data to google sheet individually as well as collectively.You can store all data of group of candidates in your google sheet on a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Linkedin Data Scrapper",
  "version": "1.2",
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icons/linkedin.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/linkedin.png",
    "default_popup": "background/popup.html"
  },
  "permissions": [
    "identity",
    "storage",
    "tabs",
    "notifications",
    "*://www.googleapis.com/*",
    "*://accounts.google.com/*"
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "batch.js"
      ]
    }
  ]
}