Closely: Email Finder & LI Data Scraper

Closely: Email Finder & LI Data Scraper

Closely Surfer is an extension that helps you find and scrape information from LI profiles. Find Email Address.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Closely: Email Finder & LI Data Scraper",
  "description": "Closely Surfer is an extension that helps you find and scrape information from LI profiles. Find Email Address.",
  "version": "1.0.2",
  "author": "Closely",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_icon": "icons/logo.png",
    "default_title": "Closely Surfer: LinkedIn Data Scraper",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "constants.js",
        "helpers.js",
        "apiUrls.js",
        "withdrawInvitation.js",
        "lidParser.js",
        "snParser.js",
        "snListExporter.js",
        "crmIntegration.js",
        "peopleSearch.js",
        "syncAccount.js",
        "linkedin.js"
      ],
      "css": [
        "widget.css"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    },
    {
      "js": [
        "constants.js",
        "closely.js"
      ],
      "matches": [
        "https://app.closelyhq.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "cookies"
  ],
  "externally_connectable": {
    "matches": [
      "https://app.closelyhq.com/*",
      "https://api.closelyhq.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "components/*",
        "images/*",
        "icons/*",
        "pages/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://*.closelyhq.com/*",
    "https://www.linkedin.com/*"
  ]
}