Management-Ware Email Extractor

Management-Ware Email Extractor

Extract emails on any opened Web page with only on click and export to CSV or excel. Use this tool to create your own emailing list. This Email Extractor is the perfect tools for marketers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Management-Ware Email Extractor",
  "version": "1.0.0",
  "description": "Extract email on any opened web page and export to CSV or excel",
  "icons": {
    "128": "EmailExtractor_icon128x128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/Main.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "{713ac1d9-6319-4295-98c6-22cb1e2f67af}"
    }
  }
}