Profile Scraper - Leadboot

Profile Scraper - Leadboot

One-click to scrape B2B leads profile to Excel/CSV. Included name, job, headline, company, educations, skills...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "One-click to scrape B2B leads profile to Excel/CSV. Included name, job, headline, company, educations, skills...  ",
  "default_locale": "en",
  "icons": {
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "128": "icons/logo.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*.png",
        "icons/*.gif",
        "fonts/*"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ],
  "options_page": "./options.html",
  "permissions": [
    "webRequest",
    "tabs",
    "unlimitedStorage",
    "storage"
  ],
  "host_permissions": [
    "*://*.linkedin.com/*",
    "*://*.linkedradar.com/*"
  ],
  "version": "1.4.0"
}