Email finder

Email finder

Find all email address in the current webpage.

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 finder",
  "description": "Find all email address in the current webpage.",
  "version": "3.0",
  "background": {
    "service_worker": "back.js"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "Email finder",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": false,
      "js": [
        "pop.js"
      ]
    }
  ]
}