Email Finder by Moonkit.io

Email Finder by Moonkit.io

Discover people and emails behind any business website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Email Finder by Moonkit.io",
  "description": "Discover people and emails behind any business website.",
  "version": "1.0.6",
  "author": "Andy Forda",
  "icons": {
    "16": "email-finder-16.png",
    "48": "email-finder-48.png",
    "128": "email-finder-128.png"
  },
  "browser_action": {
    "default_icon": "browser-action.png",
    "name": "Go to Moonkit.io"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "distance.js",
        "browser_helpers.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "profiling.css"
      ],
      "js": [
        "profiling.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://src.moonkit.io http://localhost; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "https://app.moonkit.io/*",
      "https://moonkit.io/*",
      "http://localhost:3000/*",
      "http://localhost:8080/*"
    ]
  },
  "permissions": [
    "https://moonkit.io/*",
    "https://app.moonkit.io/*",
    "tabs"
  ]
}