Leadseeder - LinkedIn Automation for Prospecting and Lead Generation

Leadseeder - LinkedIn Automation for Prospecting and Lead Generation

Automate LinkedIn prospecting and lead generation with Leadseeder. Streamline LinkedIn connections and professional networking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "Leadseeder - LinkedIn Automation for Prospecting and Lead Generation",
  "description": "Automate LinkedIn prospecting and lead generation with Leadseeder. Streamline LinkedIn connections and professional networking.",
  "version": "1.0.2",
  "author": "leadseeder.co",
  "minimum_chrome_version": "93",
  "action": {
    "default_popup": "./Views/popup.html",
    "default_icon": "./Assets/Images/icon-128.png"
  },
  "icons": {
    "16": "./Assets/Images/icon-16.png",
    "32": "./Assets/Images/icon-32.png",
    "48": "./Assets/Images/icon-48.png",
    "64": "./Assets/Images/icon-64.png",
    "128": "./Assets/Images/icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "scripting"
  ],
  "background": {
    "service_worker": "./Scripts/BackgroundScript/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*.linkedin.com/*"
      ],
      "css": [
        "./Assets/CSS/style.css",
        "./Libs/jquery-ui.css"
      ],
      "all_frames": false,
      "js": [
        "./Libs/jquery-1.12.4.js",
        "./Libs/jquery-ui.js",
        "./Libs/toast.min.js",
        "./Libs/alert.min.js",
        "./Libs/moment.js",
        "./Assets/JS/web.api.js",
        "./Assets/JS/linkedin.api.js",
        "./Assets/JS/notify.min.js",
        "./Scripts/ContentScript/content_script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.linkedin.com/*"
      ],
      "css": [],
      "all_frames": false,
      "js": [
        "./Libs/jquery-1.12.4.js",
        "./Libs/moment.js",
        "./Libs/toast.min.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.leadseeder.in/*"
      ],
      "js": [
        "./Scripts/ContentScript/extension_installed.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "myscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://backend.leadseeder.co/*",
    "https://app.leadseeder.co/*",
    "http://localhost:3000/",
    "http://linkedin.com/*",
    "https://linkedin.com/*",
    "http://*.linkedin.com/*",
    "https://*.linkedin.com/*",
    "http://www.linkedin.com/*",
    "https://www.linkedin.com/*"
  ]
}