SalesQL - B2B Email Finder

SalesQL - B2B Email Finder

Find verified email addresses and phone numbers of any prospect on LinkedIn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_popup": "./popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content/free/init.js"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "exclude_matches": [
        "https://*.linkedin.com/recruiter/*",
        "https://*.linkedin.com/talent/*",
        "https://*.linkedin.com/sales/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "content/recruiter/init.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.linkedin.com/talent/*"
      ]
    },
    {
      "js": [
        "content/sales/init.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.linkedin.com/sales/*"
      ]
    },
    {
      "js": [
        "content/salesQL.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://*.salesql.com/*"
      ]
    },
    {
      "js": [
        "content/salesQLVersion.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "https://*.salesql.com/*"
      ]
    },
    {
      "js": [
        "content/salesQLVersion.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "https://salesql.com/*"
      ]
    },
    {
      "all_frames": true,
      "match_origin_as_fallback": true,
      "run_at": "document_start",
      "id": "main",
      "js": [
        "content/visibility/main.js"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "world": "MAIN"
    },
    {
      "all_frames": true,
      "match_origin_as_fallback": true,
      "run_at": "document_start",
      "id": "isolated",
      "js": [
        "content/visibility/isolated.js"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "world": "ISOLATED"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "description": "Find verified email addresses and phone numbers of any prospect on LinkedIn.",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "manifest_version": 3,
  "name": "SalesQL - B2B Email Finder",
  "permissions": [
    "tabs",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "*://*.salesql.com/*",
    "*://*.linkedin.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.salesql.com/*"
    ]
  },
  "version": "1.2.27",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}