Email Exporter

Email Exporter

Email Exporter helps you find email addresses on any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Email Exporter",
  "description": "Email Exporter helps you find email addresses on any website",
  "version": "1.4",
  "icons": {
    "16": "icons/logo-128.png",
    "48": "icons/logo-128.png",
    "128": "icons/logo-128.png"
  },
  "action": {
    "default_title": "Chrome Addon v3 Starter",
    "default_popup": "popup/payment.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*",
    "https://sprise-api.xyz/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "foreground.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}