Mailmo - Email Finder for Linkedin

Mailmo - Email Finder for Linkedin

Find professional business emails directly on Linkedin

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mailmo - Email Finder for Linkedin",
  "version": "1.0.8",
  "description": "Find professional business emails directly on Linkedin",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "images/icon.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo.png",
        "style.css"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "use_dynamic_url": false
    }
  ]
}