Email extract

Email extract

Extract emails from visited pages - collect leads without effort

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "88.0",
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "default_locale": "en",
  "version": "2.1.0",
  "icons": {
    "128": "icons/icon128.png"
  },
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage",
    "identity"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "icons/icon128.png",
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoBPlRJt8F8tiKJOlT0AecESYHxeZhPBzTLHyy8s5cVITBNoV9j/Jr3xutu5caEYWEBUQeWqgh23m0q0AeEWA6tH41+HxP80UnSQthqjstQG5/fonEwTTZOHCqmxFTAwepet85/qvT/vCbYl2IP5Z4Iry5wqzMuNDgKhuZHQE0sDwp61EZXyGDIX9KvWE02WlOCcnaA4OUL+j9LWJpwXqfQF13ZqSiwUHGF8XyuZ3t14XULzLrNMOeIiMcOU2yPNFW43TOLnVVinyfIm9I0UZM3ujXPN1B4bGBQXSiAjGeclggL4GAIgnkBjnJFicodhCRoNnlyd5wVqV9GnoDtTjIwIDAQAB"
}