FREE Email Revealer on any website site.

FREE Email Revealer on any website site.

Reveals all emails on any website you visit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.0.01",
  "name": "FREE Email Revealer on any website site.",
  "short_name": "FREE Email Revealer",
  "description": "Reveals all emails on any website you visit",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "FREE Email Revealer",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "main-bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "background": {
    "scripts": [
      "background-bundle.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "notifications",
    "storage",
    "activeTab"
  ]
}