Icypeas

This Chrome extension allows you to automatically scrape leads from a Linkedin Sales Navigator search. Then, you can download them…
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Icypeas",
  "version": "1.2.1",
  "manifest_version": 3,
  "icons": {
    "16": "assets/logo.png",
    "32": "assets/logo.png",
    "48": "assets/logo.png",
    "96": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "action": {},
  "background": {
    "service_worker": "src/backgrounds/background.js"
  },
  "permissions": [
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.linkedin.com/sales/*",
    "https://*.icypeas.com/sn",
    "http://localhost:8080/sn"
  ],
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_end",
      "js": [
        "src/content/li-content.js"
      ],
      "matches": [
        "https://*.linkedin.com/sales/*"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "run_at": "document_start",
      "js": [
        "src/content/icy-content.js"
      ],
      "matches": [
        "https://*.icypeas.com/sn",
        "http://localhost:8080/sn"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "run_at": "document_end",
      "js": [
        "src/content/icy-marking.js"
      ],
      "matches": [
        "https://*.icypeas.com/bo/*",
        "http://localhost:8080/bo/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}