Email Xtractor

Email Xtractor

Extract emails from the web pages you browse. For your security we will not collect email from input box.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email Xtractor",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "Extract emails from the web pages you browse. For your security we will not collect email from input box.",
  "icons": {
    "16": "images/16X16.png",
    "48": "images/48X48.png",
    "128": "images/128X128.png"
  },
  "action": {
    "default_popup": "ext.html"
  },
  "web_accessible_resources": [],
  "background": {},
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [],
  "content_scripts": [
    {
      "all_frames": false,
      "css": [],
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "offline_enabled": true
}