Phish Alert

Phish Alert

A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Phish Alert",
  "description": "A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.",
  "manifest_version": 3,
  "version": "1.1.0",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "./icons/icon-16x16.png",
    "48": "./icons/icon-48x48.png",
    "128": "./icons/icon-128x128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "js/extensionInjector.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/gmailJsLoader.js",
        "js/extension.js"
      ],
      "matches": [
        "*://mail.google.com/*"
      ]
    }
  ],
  "host_permissions": [
    "*://mail.google.com/*"
  ],
  "action": {
    "default_popup": "Popup.html"
  }
}