Extract Emails

Extract Emails

Extract Emails - Extract emails from any website automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "homepage_url": "https://chrome.google.com/webstore/detail/kpkikpldnjgpchckjmmanbplhhmodlbf",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "next.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "version": "1.3",
  "manifest_version": 3
}