Email Phishing Tool

Email Phishing Tool

Check if an email is phishing with one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email Phishing Tool",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Check if an email is phishing with one click!",
  "icons": {
    "16": "emailphishingicon16.png",
    "48": "emailphishingicon48.png",
    "128": "emailphishingicon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Email Phishing Tool",
    "default_popup": "popup.html"
  }
}