FYEO Agent Phishing Protection

FYEO Agent Phishing Protection

FYEO Agent leverages FYEO's Fisko AI to protect against phishing attacks in the browser regardless of where the link originated.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "FYEO Agent",
  "name": "FYEO Agent Phishing Protection",
  "description": "FYEO Agent leverages FYEO's Fisko AI to protect against phishing attacks in the browser regardless of where the link originated.",
  "version": "1.1.27",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "FYEO Agent Phishing Protection"
  },
  "icons": {
    "16": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "notifications",
    "tabs"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "commands": {
    "Ctrl+M": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Ctrl+M."
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "static/media/*",
        "static/data/*"
      ]
    }
  ]
}